@if ($products->isNotEmpty())

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

@include(Theme::getThemeNamespace() . '::views/ecommerce/includes/sort')
@endif @if ($products->isNotEmpty()) @include(Theme::getThemeNamespace() . '::views.ecommerce.includes.product-items-loop', ['products' => $products, 'perRow' => theme_option('number_of_products_per_row', 4)]) @else

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

@endif @if ($products instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator && $products->hasPages())
{!! $products->withQueryString()->links(Theme::getThemeNamespace() . '::partials.custom-pagination') !!} @endif