@if ($product)
@foreach ($product->categories as $category) {{ $category->name }}@if (!$loop->last), @endif @endforeach
@if (EcommerceHelper::isReviewEnabled())
({{ number_format($product->reviews_count) }})
@endif
{{ $product->name }}
@if ($product->front_sale_price === $product->price)

{{ format_price($product->front_sale_price_with_taxes) }}

@else

{{ format_price($product->front_sale_price_with_taxes) }}

{{ format_price($product->price_with_taxes) }}

@endif @if ($stockStatusLabel = $product->stockStatusLabel)

({{ $stockStatusLabel }})

@endif
{!! BaseHelper::clean(Str::limit($product->description, 300)) !!}
@csrf @if ($product->variations()->count() > 0)
{!! render_product_swatches($product, [ 'selected' => $selectedAttrs, 'view' => Theme::getThemeNamespace('views.ecommerce.attributes.swatches-renderer') ]) !!}
@endif
@if (EcommerceHelper::isWishlistEnabled()) @endif @if (EcommerceHelper::isCompareEnabled()) @endif
@endif