@php Theme::layout('full-width'); Theme::set('pageDescription', $brand->description); @endphp
{!! Theme::partial('page-header') !!}
@if ($products->isNotEmpty())
@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