@extends('layouts.admin') @section('title', 'Global Menu Items') @section('content') @if(session('upload_errors')) @endif
@forelse($items as $item) @empty @endforelse
Item Category Cuisine Food Type Prep Used By Status Actions
@if($item->image) {{ $item->name }} @else @endif
{{ $item->name }}
{{ Str::limit($item->description, 70) }}
{{ $item->category_name ?: 'Uncategorized' }} @if($item->subcategory_name)
{{ $item->subcategory_name }}
@endif
{{ $item->cuisine?->name ?: '-' }} {{ $item->diet_label }} {{ $item->preparation_time ? $item->preparation_time . ' min' : '-' }} {{ $item->restaurant_menu_items_count }} {{ $item->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No global menu items yet.
{{ $items->links() }}
@endsection