@lang('menu.qrCodes')

@lang('modules.table.available')
@lang('modules.table.running')
@lang('modules.table.reserved')
@if (is_null($areaID) && branch()->qRCodeUrl) @php $branchItem = collect($printableQrItems)->firstWhere('kind', 'branch'); @endphp @if ($branchItem)

@lang('modules.table.branchMenuQr')

@include('livewire.qr-code.partials.qr-code-card', [ 'item' => $branchItem, 'tableModel' => null, ])
@endif @endif @foreach ($tables as $area)

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

@foreach ($area->tables as $item) @php $tableItem = collect($printableQrItems)->firstWhere('id', 'table-' . $item->id); @endphp @if ($tableItem) @include('livewire.qr-code.partials.qr-code-card', [ 'item' => $tableItem, 'tableModel' => $item, ]) @endif @endforeach
@endforeach
{{-- Preview modal --}} {{-- Bulk print sheet (browser print only) --}}

@push('styles') @endpush