@extends('digitalmenu::layouts.public') @section('title', ($shop->name ?? 'Shop') . ' - Catalog') @section('header-right') @endsection @section('sub-header') @if($categories->count() > 0) @endif @endsection @section('content')
@forelse($categories as $category) @php $products = $productsByCategory->get($category->id, collect()); @endphp

{{ $category->name }}

@if($products->count() > 0) @else

No products in this category.

@endif
@empty
inventory_2

No products available at the moment.

@endforelse
@endsection @section('scripts') @endsection