@if ($products->isNotEmpty())
@foreach($products as $product)
{!! BaseHelper::clean($product->name) !!} @if (EcommerceHelper::isReviewEnabled() && $product->reviews_avg > 0)
({{ $product->reviews_count }})
@endif @include(Theme::getThemeNamespace('views.ecommerce.includes.product-price'))
@endforeach
@if ($products->hasMorePages() && $products->nextPageUrl())
{{ __('Load more') }}
@endif
@else
{{ __('No products found.') }}
@endif