@if ($products->isNotEmpty())
@foreach ($products as $product)
{{ RvMedia::image($product->image, $product->name, 'thumb', useDefaultImage: true) }}
{{ $product->name }}
@if (EcommerceHelper::isReviewEnabled())
({{ $product->reviews_count }})
@endif
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->isOnSale()) {{ format_price($product->price_with_taxes) }} @endif
@endforeach
@if ($products->hasMorePages() && $products->nextPageUrl())
{{ __('Load more') }}
@endif
{{ __('View all results') }}
@else
{{ __('No results found!') }}
@endif