Faster voice announcements, Care/Frontdesk API, and console UI polish.
Deploy Ladill Queue / deploy (push) Successful in 28s
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:
@@ -29,9 +29,11 @@ class TicketController extends Controller
|
||||
$tickets = Ticket::owned($owner)
|
||||
->where('organization_id', $organization->id)
|
||||
->with(['serviceQueue', 'counter'])
|
||||
->when($request->query('queue'), fn ($q, $uuid) => $q->whereHas('serviceQueue', fn ($sq) => $sq->where('uuid', $uuid)))
|
||||
->when($request->query('status'), fn ($q, $s) => $q->where('status', $s))
|
||||
->latest('issued_at')
|
||||
->paginate(30);
|
||||
->paginate(30)
|
||||
->withQueryString();
|
||||
|
||||
$queues = ServiceQueue::owned($owner)->where('organization_id', $organization->id)->orderBy('name')->get();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user