@foreach ($productImages as $img)
{{ $product->name }}
@endforeach

{!! BaseHelper::clean($product->name) !!}

{{ __('Brand') }}: {{ $product->brand->name }}

@if (EcommerceHelper::isReviewEnabled()) @if ($product->reviews_count > 0)
({{ $product->reviews_count }} {{ __('reviews') }})
@endif @endif

{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price !== $product->price) {{ format_price($product->price_with_taxes) }} @endif

{!! apply_filters('ecommerce_before_product_description', null, $product) !!} {!! BaseHelper::clean($product->description) !!} {!! apply_filters('ecommerce_after_product_description', null, $product) !!}
@if ($product->variations()->count() > 0)
{!! render_product_swatches($product, [ 'selected' => $selectedAttrs, 'view' => Theme::getThemeNamespace() . '::views.ecommerce.attributes.swatches-renderer' ]) !!}
@endif @if ($product->options()->count() > 0 && isset($product->toArray()['options']))
{!! render_product_options($product, $product->toArray()['options']) !!}
@endif
@csrf
@if (EcommerceHelper::isCartEnabled()) @if (EcommerceHelper::isQuickBuyButtonEnabled()) @endif @endif
@if (EcommerceHelper::isWishlistEnabled()) @endif @if (EcommerceHelper::isCompareEnabled()) @endif