@if (count($products) > 0)
@foreach($products as $product)
@include('theme-views.partials._product-small-card', ['product' => $product])
@endforeach
@else
{{ translate('There_is_no_product') }}!
@endif
@if(count($products) > 0 && ceil(($products->total() / ($singlePageProductCount ?? 20))) != 1)
@endif