Files
isaaccladandCursor 29bf896f21
Deploy Ladill Queue / deploy (push) Successful in 47s
Fix counter console 404 when routes are cached.
Route model binding fell back to numeric id after route:cache; models now
resolve by uuid so Care and Frontdesk counter consoles work in production.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 22:31:54 +00:00

12 lines
147 B
PHP

<?php
namespace App\Models\Concerns;
trait UsesUuidRouteKey
{
public function getRouteKeyName(): string
{
return 'uuid';
}
}