14-day trend

@foreach ($trend as $day) @endforeach
DateIssuedCompleted
{{ $day['date'] }}{{ $day['issued'] }}{{ $day['completed'] }}

Busiest queues

    @forelse ($overview['busiest_queues'] ?? [] as $q)
  • {{ $q['name'] }}{{ $q['waiting'] }} waiting
  • @empty
  • No active queues.
  • @endforelse
@foreach ([ 'serving' => 'Being served', 'no_shows_today' => 'No-shows today', 'avg_wait_seconds' => 'Avg wait (sec)', 'appointments_today' => 'Appointments today', ] as $key => $label)
{{ $label }}
{{ $overview[$key] ?? 0 }}
@endforeach