@php Theme::layout('full-width'); @endphp

{{ theme_option('product_page_banner_title') ? theme_option('product_page_banner_title') : __('Enjoy Shopping with us') }}

@include(Theme::getThemeNamespace() . '::views/ecommerce/includes/sort') {{ __('Filter Products') }}
@include(Theme::getThemeNamespace() . '::views/ecommerce/includes/filters')
@if ($products->count() > 0)
@foreach($products as $product)
{!! Theme::partial('product-item', compact('product')) !!}
@endforeach
{!! $products->withQueryString()->links() !!}
@else

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

@endif
@include(Theme::getThemeNamespace() . '::views/ecommerce/includes/filters-modal')