@lang('modules.menu.allMenuItems')

@lang('app.showFilter')
@lang('modules.menu.sortMenuItems') @php $menuItemStats = getRestaurantMenuItemStats(user()->restaurant_id); @endphp @if(user_can('Create Menu Item') && ($menuItemStats['unlimited'] || $menuItemStats['current_count'] < $menuItemStats['menu_items_limit'])) {{ __('modules.menu.bulkUpload') }} @lang('modules.menu.addMenuItem') @endif
@if ($showFilters) @include('menu_items.filters') @endif
@forelse ($menuItems as $item) @empty @endforelse
@lang('modules.menu.itemName') @lang('modules.menu.setPrice') @lang('modules.menu.itemCategory') @lang('modules.menu.menuName') @lang('modules.menu.isAvailable') @lang('modules.menu.showOnCustomerSite') @lang('app.action')
{{ $item->item_name }}
{{ $item->item_name }} @if (!$item->is_available) @lang('app.inactive') @endif
{{ $item->description }}
{{ $item->price ? currency_format($item->price, restaurant()->currency_id) : '--' }} {{ $item->category->category_name }} {{ $item->menu->menu_name }} @if ($item->variations_count > 0) @lang('modules.menu.showVariations') @endif @if(user_can('Update Menu Item')) @lang('app.update') @endif @if(user_can('Delete Menu Item')) @endif

@lang('messages.noItemAdded')

{{ $menuItems->links() }}
@lang('modules.menu.itemCategory') @livewire('forms.addItemCategory') @lang('modules.menu.itemVariations') @if ($menuItem) @livewire('menu.itemVariations', ['menuItem' => $menuItem], key('item-variations-'.$menuItem->id)) @endif @lang('modules.menu.deleteMenuItem')? @lang('modules.menu.deleteMenuItemMessage') {{ __('app.cancel') }} @if ($menuItem) {{ __('Delete') }} @endif