@if(!$restaurant->isOpen)

🚫 We are currently closed. You can browse the menu but cannot place orders.

@endif
@if($restaurant->logo) {{ $restaurant->name }} @else

{{ $restaurant->name }}

@endif

Table: {{ $table->table_number }}

@foreach($categories as $category) @endforeach
@foreach($categories as $category) @if(!$selectedCategory || $selectedCategory == $category->id)

{{ $category->name }}

@foreach($category->menuItems as $item)
@if($item->image) {{ $item->name }} @endif

{{ $item->name }}

${{ number_format($item->price, 2) }}
@if($item->description)

{{ $item->description }}

@endif
@if($item->is_vegetarian) Vegetarian @endif @if($item->is_vegan) Vegan @endif @if($item->is_spicy) 🌶️ Spicy @endif
@if($item->preparation_time)

⏱️ {{ $item->preparation_time }} min

@endif
@endforeach
@endif @endforeach
@script @endscript