@php Theme::layout('full-width'); @endphp
{!! Theme::partial('page-header') !!}
@if ($products->count())
@foreach($products as $product)
{!! Theme::partial('ecommerce.product.item-grid', compact('product')) !!}
@endforeach
@if ($products instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $products->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif @else

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

@endif