@if($products->isNotEmpty())

{!! BaseHelper::clean(__('We found :total items for you!', ['total' => '' . $products->count() . ''])) !!}

@include(Theme::getThemeNamespace() . '::views/ecommerce/includes/sort')
@endif
@forelse ($products as $product)
@include(Theme::getThemeNamespace() . '::views.ecommerce.includes.product-item', compact('product'))
@empty

{{ __('No products found!') }}

@endforelse
@if ($products->hasPages())
{!! $products->withQueryString()->links(Theme::getThemeNamespace() . '::partials.custom-pagination') !!} @endif