{{-- resources/views/admin/menu/index.blade.php --}} @extends('layouts.admin') @section('title', 'Menu Management') @section('page_title', 'Menu Management') @section('icon', 'fa-utensils') @section('breadcrumb')
| # | Image | Name | Category | Price | Stock | Status | Tags | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if($menu['image_url'])
|
{{ $menu['name'] }}
@if($menu['description'])
{{ Str::limit($menu['description'], 50) }} @endif |
{{ $menu['category_name'] ?? 'N/A' }} | Rp {{ number_format($menu['price'], 0, ',', '.') }} | @if($menu['stock'] === null) Unlimited @else @endif | @if($menu['is_available']) Available @else Unavailable @endif |
@if($menu['is_best_seller'])
Best Seller
@endif
@if($menu['is_special'])
Special
@endif
|
|
No menu items foundTry adjusting your search filters or add new items |
||||||||