@if ($products->count())
@foreach($products as $product)
{!! BaseHelper::clean($product->name) !!} @if (EcommerceHelper::isReviewEnabled()) @if ($product->reviews_avg > 0)
({{ $product->reviews_count }})
@endif @endif

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

@endforeach
@else
{{ __('No products found.') }}
@endif