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

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

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

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

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

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