/home/techb158/immovalet.com/platform/themes/shopwise/views/ecommerce
Edit: /home/techb158/immovalet.com/platform/themes/shopwise/views/ecommerce/product.blade.php (16033B)
@php
Theme::asset()->remove('app-js');
Theme::set('pageName', $product->name);
@endphp
@foreach ($productImages as $img)
@endforeach
{{ format_price($product->front_sale_price_with_taxes) }}
front_sale_price == $product->price) style="display: none" @endif>{{ format_price($product->price_with_taxes) }}
front_sale_price == $product->price) style="display: none" @endif>
{{ get_sale_percentage($product->price, $product->front_sale_price) }} {{ __('Off') }}
@if (EcommerceHelper::isReviewEnabled())
@if ($product->reviews_count > 0)
({{ $product->reviews_count }})
@endif
@endif
{!! clean($product->description, 'youtube') !!}
@if ($product->variations()->count() > 0)
{!! render_product_swatches($product, [
'selected' => $selectedAttrs,
'view' => Theme::getThemeNamespace() . '::views.ecommerce.attributes.swatches-renderer'
]) !!}
@endif
{!! clean($product->content, 'youtube') !!}
@if (theme_option('facebook_comment_enabled_in_product', 'yes') == 'yes')
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, Theme::partial('comments')) !!}
@endif
@if (EcommerceHelper::isReviewEnabled())
@endif
@php
$crossSellProducts = get_cross_sale_products($product);
@endphp
@if (count($crossSellProducts) > 0)
{{ __('Customers who bought this item also bought') }}
@foreach ($crossSellProducts as $crossSellProduct)
{!! Theme::partial('product-item-grid', ['product' => $crossSellProduct]) !!}
@endforeach
@endif
{{ __('Related Products') }}
@php
$relatedProducts = get_related_products($product);
@endphp
@if (!empty($relatedProducts))
@foreach ($relatedProducts as $related)
{!! Theme::partial('product-item-grid', ['product' => $related]) !!}
@endforeach
@endif
{{ __(':count Reviews For :product', ['count' => $product->reviews_count, 'product' => $product->name]) }}