Use industry-specific ticket priority labels.
Deploy Ladill Queue / deploy (push) Successful in 55s

Restaurant (and other packages) now show Rush, Reservation, VIP table, etc. instead of clinic terms like Emergency and Elderly.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-17 20:15:56 +00:00
co-authored by Cursor
parent a2d5a8affd
commit b5ffa499b9
11 changed files with 252 additions and 4 deletions
+1 -1
View File
@@ -33,7 +33,7 @@
<div>
<label class="block text-sm font-medium">Boost priority to</label>
<select name="priority" class="mt-1 w-full rounded-lg border-slate-300 text-sm">
@foreach (config('qms.ticket_priorities') as $value => $label)
@foreach ($ticketPriorities as $value => $label)
<option value="{{ $value }}">{{ $label }}</option>
@endforeach
</select>
+1 -1
View File
@@ -66,7 +66,7 @@
<div>
<label class="block text-sm font-medium">Priority</label>
<select name="priority" class="mt-1 w-full rounded-lg border-slate-300 text-sm">
@foreach (config('qms.ticket_priorities') as $value => $label)
@foreach ($ticketPriorities as $value => $label)
<option value="{{ $value }}" @selected(old('priority', 'walk_in') === $value)>{{ $label }}</option>
@endforeach
</select>