@hotelSettings

{{ $menuItems->count() }}

Total Items

{{ $menuItems->where('is_available', true)->count() }}

Available

{{ $menuItems->where('is_featured', true)->count() }}

Featured

UGX {{ number_format($menuItems->sum('price'), 2) }}

Total Value

@forelse($menuItems as $item) @empty @endforelse
Image Name Category Price Cost Prep Time Status Featured Actions
@if($item->image) {{ $item->name }} @else
@endif
{{ $item->name }} @if($item->description)
{{ Str::limit($item->description, 50) }} @endif
@if($item->category) {{ $item->category->name }} @else No Category @endif UGX {{ number_format($item->price, 2) }} @if($item->cost_price) UGX {{ number_format($item->cost_price, 2) }} @else - @endif {{ $item->preparation_time }} min {{ $item->is_available ? 'Available' : 'Unavailable' }} @if($item->is_featured) @else @endif
@csrf @method('DELETE')

No Menu Items Found

Get started by creating your first menu item

Create First Item
@if($menuItems->hasPages())
{{ $menuItems->links() }}
@endif