Keep consultation context on nested clinical pages and add Call again on patient queue cards.
Deploy Ladill Care / deploy (push) Successful in 1m7s

Doctors can return to the active consultation from forms, lab, prescriptions, pathways, and bills; queue cards can re-announce called/serving tickets via the existing Queue recall bridge.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-17 17:48:34 +00:00
co-authored by Cursor
parent e73b39b678
commit 94e53d05bf
21 changed files with 615 additions and 30 deletions
+1
View File
@@ -90,6 +90,7 @@ Route::middleware(['auth', 'platform.session'])->group(function () {
Route::get('/queue', [QueueController::class, 'index'])->name('care.queue.index');
Route::post('/queue/call-next', [QueueController::class, 'callNext'])->name('care.queue.call-next');
Route::post('/queue/{appointment}/start', [QueueController::class, 'start'])->name('care.queue.start');
Route::post('/queue/{appointment}/recall', [QueueController::class, 'recall'])->name('care.queue.recall');
Route::post('/queue/{appointment}/complete-ticket', [QueueController::class, 'completeTicket'])->name('care.queue.complete-ticket');
Route::middleware('care.paid')->group(function () {