@forelse($products as $product)
@if($product->image) {{ $product->name }} @else
@endif
{{ currency($product->price) }}
@if(($product->sales_total ?? 0) > 0) {{ __('front.popular') }} @elseif($product->created_at && $product->created_at->gt(now()->subDays(7))) {{ __('front.new') }} @endif

{{ $product->name }}

{{ $product->description }}

@empty

{{ __('front.no_items_found') }}

{{ __('front.try_another_category') }}

@endforelse
@if($products->count() < $totalCount)
@endif