@extends('layouts.app') @section('title', $menuItem->name . ' — Culinary Creation') @section('content')
Home Menu @if($menuItem->category) {{ $menuItem->category->name }} @endif {{ $menuItem->name }}
{{ $menuItem->name }}
@if($menuItem->images->isNotEmpty())
@foreach($menuItem->images as $img) @endforeach
@endif
{{ $menuItem->category?->name ?? 'Special' }} @if($menuItem->is_featured) Signature Dish @endif @if($menuItem->sku) SKU: {{ $menuItem->sku }} @endif

{{ $menuItem->name }}

@if($menuItem->isOnSale()) {{ money($menuItem->sale_price) }} {{ money($menuItem->price) }} Save {{ money($menuItem->price - $menuItem->sale_price) }} @else {{ money($menuItem->price) }} @endif

{{ $menuItem->description ?: $menuItem->short_description }}

@if($menuItem->ingredients)
Ingredients

{{ $menuItem->ingredients }}

@endif @if($menuItem->allergens)
Allergen Information

{{ $menuItem->allergens }}

@endif
@csrf @if($menuItem->modifiers->isNotEmpty())

Customize Your Dish

@foreach($menuItem->modifiers as $mod)
{{ $mod->type === 'single' ? 'Choose 1 option' : 'Select any' }}
@foreach($mod->options as $opt) @if($mod->type === 'single') @else @endif @endforeach
@endforeach
@endif
@if($menuItem->is_available) @else @endif
@if($relatedItems->isNotEmpty())
@foreach($relatedItems as $rel) @include('components.menu-card', ['dish' => $rel]) @endforeach
@endif
@endsection