Add kiosk join/leave pages, waiting room, and meeting feedback.
Deploy Ladill Meet / deploy (push) Successful in 47s

Redesign public join flows on the Frontdesk kiosk template, enforce host
admission when waiting room is enabled, and collect star ratings after leave.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-01 13:33:48 +00:00
co-authored by Cursor
parent 5e34d71de0
commit 7ae26a467c
26 changed files with 865 additions and 124 deletions
+3
View File
@@ -51,6 +51,9 @@ return Application::configure(basePath: dirname(__DIR__))
\Illuminate\Support\Facades\Route::bind('registration', function (string $value) {
return \App\Models\WebinarRegistration::where('uuid', $value)->firstOrFail();
});
\Illuminate\Support\Facades\Route::bind('participant', function (string $value) {
return \App\Models\Participant::where('uuid', $value)->firstOrFail();
});
},
)
->withMiddleware(function (Middleware $middleware): void {