@vite(['resources/css/app.css', 'resources/js/app.js'])
@if($restaurant->logo_url) {{ $restaurant->name }} Logo @else

{{ $restaurant->name }}

@endif
{{-- Filter Buttons & Language Switcher --}}
@php $availableLangs = $restaurant->categories->flatMap(fn($category) => $category->translations)->pluck('locale')->unique()->sort(); @endphp @foreach($availableLangs as $lang) @endforeach
{{-- Category Navigation --}}
@foreach($restaurant->categories as $category) @php $isDrinkCategory = Str::contains(strtolower($category->translations->firstWhere('locale', 'de')->name ?? ''), ['getränke', 'drinks', 'beverages', 'softdrinks', 'wein', 'bier']); @endphp

@foreach($category->dishes as $dish) @if($dish->is_available)
@if($dish->image_url) Bild von {{ $dish->translations->firstWhere('locale', 'de')->name }} @endif

{{ number_format($dish->price, 0, ',', '.') }} Ft

@endif @endforeach
@endforeach