← Counters

{{ $counter->name }}

{{ $counter->branch?->name }} · {{ $counter->code ?: 'No desk code' }}

@if ($canManage) Edit counter @endif Open console

Assigned queues

@if ($counter->serviceQueues->isEmpty())

No queues linked yet. Edit this counter to assign service queues.

@else
    @foreach ($counter->serviceQueues as $queue)
  • {{ $queue->name }}

    Prefix {{ $queue->prefix }}

    {{ $waitingCounts[$queue->id] ?? 0 }} waiting
  • @endforeach
@endif

Now at this counter

@if ($currentTicket)

{{ $currentTicket->ticket_number }}

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

{{ $currentTicket->customer_name ?: 'Walk-in' }}

@else

No customer is being served. Open the console to call the next ticket.

@endif