@extends('storefront.layout') @section('title', 'Shop — ' . $sfStore->name) @section('content')

Shop

@if($categories->isNotEmpty())
All @foreach($categories as $cat) {{ $cat->name }} @endforeach
@endif @if($products->isEmpty())

No products found

Try another search or category, or return to the home page.

@else
@include('storefront.partials.product-grid-items', ['products' => $products])
@for($i = 0; $i < 6; $i++)
@endfor

Loading more products…

You have reached the end of the catalog.

@endif @include('storefront.partials.float-cart') @endsection @push('scripts') @endpush