@lang('menu.qrCodes')

@foreach ($tables as $area)

{{ $area->area_name }} {{ $area->tables->count() }} @lang('modules.table.table')

@foreach ($area->tables as $item)
($item->status == 'inactive'), 'bg-white' => ($item->status == 'active')]) wire:key='table-{{ $item->id . microtime() }}' href="javascript:;">
($item->available_status == 'available'), 'bg-red-100 text-red-600' => ($item->available_status == 'reserved'), 'bg-blue-100 text-blue-600' => ($item->available_status == 'running')])>

{{ $item->table_code }}

{{ $item->seating_capacity }} @lang('modules.table.seats')

@if ($item->available_status == 'reserved')
@lang('modules.table.reserved')
@endif @if ($item->status == 'inactive')
@lang('app.inactive')
@endif
@endforeach
@endforeach