Faster voice announcements, Care/Frontdesk API, and console UI polish.
Deploy Ladill Queue / deploy (push) Successful in 28s

Poll displays every 1.2s with client-side TTS ack; expose service API for sibling apps; redesign tickets, counters, and staff console.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-29 21:51:13 +00:00
co-authored by Cursor
parent 051372672b
commit bc6bf0a07c
22 changed files with 813 additions and 140 deletions
@@ -0,0 +1,20 @@
@props(['status'])
@php
$styles = [
'waiting' => 'bg-slate-100 text-slate-700 ring-slate-200',
'called' => 'bg-amber-50 text-amber-800 ring-amber-200',
'serving' => 'bg-indigo-50 text-indigo-800 ring-indigo-200',
'on_hold' => 'bg-violet-50 text-violet-800 ring-violet-200',
'completed' => 'bg-emerald-50 text-emerald-800 ring-emerald-200',
'no_show' => 'bg-rose-50 text-rose-800 ring-rose-200',
'cancelled' => 'bg-slate-100 text-slate-500 ring-slate-200',
'transferred' => 'bg-sky-50 text-sky-800 ring-sky-200',
];
$label = config('qms.ticket_statuses.'.$status, ucfirst(str_replace('_', ' ', $status)));
$class = $styles[$status] ?? 'bg-slate-100 text-slate-700 ring-slate-200';
@endphp
<span {{ $attributes->merge(['class' => "inline-flex items-center rounded-full px-2.5 py-0.5 text-xs font-medium ring-1 ring-inset {$class}"]) }}>
{{ $label }}
</span>