{{ $counter->name }}

{{ $counter->branch?->name }} · Status: {{ config('qms.counter_statuses.'.$counter->status, $counter->status) }}

@csrf
@csrf
@if ($currentTicket)

Current customer

{{ $currentTicket->ticket_number }}

{{ $currentTicket->serviceQueue?->name }} · {{ $currentTicket->customer_name }}

@foreach (['recall' => 'Recall', 'start' => 'Start serving', 'hold' => 'Hold', 'skip' => 'Skip', 'complete' => 'Complete', 'no_show' => 'No show'] as $action => $label)
@csrf
@endforeach
@if ($allQueues->count() > 1)
@csrf
@endif
@endif
@foreach ($queues as $queue)

{{ $queue->name }}

@csrf
    @forelse ($waitingByQueue[$queue->id] ?? [] as $ticket)
  • {{ $ticket->ticket_number }} {{ $ticket->customer_name ?? 'Walk-in' }}
  • @empty
  • No one waiting
  • @endforelse
@endforeach