Add Care waiting-area TV displays with browser TTS voice.
Deploy Ladill Care / deploy (push) Failing after 57s

Call-next and recall queue announcements for lobby screens without Ladill Queue.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-18 11:23:15 +00:00
co-authored by Cursor
parent dd4bc493b4
commit 03befd1e7f
26 changed files with 2068 additions and 3 deletions
+8
View File
@@ -51,4 +51,12 @@ class CareServicePoint extends Model
{
return $this->hasMany(CareQueueTicket::class, 'service_point_id');
}
/** Public display label (Room 4, Counter 2, etc.). Falls back to name. */
public function displayDestination(): string
{
$destination = trim((string) ($this->destination ?? ''));
return $destination !== '' ? $destination : (string) $this->name;
}
}