{!! 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
@forelse ($products as $product)
@include(Theme::getThemeNamespace('views.ecommerce.includes.product-item'), compact('product'))
@empty

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

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