@extends('layouts.app') @section('title', 'Menu - Chingu Bite') @section('content')
@if(session('success')) @endif @if(session('error')) @endif @if(config('app.debug'))
Debug Info: @auth Logged in as: {{ Auth::user()->name }} ({{ Auth::user()->email }}) @else Not logged in @endauth
@endif

Our Delicious Menu

Authentic Korean cuisine made with passion and fresh ingredients

@php // FILTER TOMBOL KATEGORI: Hilangkan duplikat $uniqueCategoryButtons = collect($categories); if (is_array($categories)) { $uniqueCategoryButtons = collect($categories) ->unique('name') ->values(); } else if (is_object($categories) && method_exists($categories, 'unique')) { $uniqueCategoryButtons = $categories ->unique('name') ->values(); } @endphp @foreach($uniqueCategoryButtons as $category) @php $categoryId = $category['id'] ?? $category->id ?? ''; $categoryName = $category['name'] ?? $category->name ?? 'Unknown'; @endphp @endforeach
@if($filteredCount > 12)
@endif
Loading...

Loading menu items...

No Menu Items Found

Try adjusting your search or filter to find what you're looking for.

@endsection @section('scripts') @endsection