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
@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('meet_session_feedback', function (Blueprint $table) {
$table->id();
$table->foreignId('session_id')->constrained('meet_sessions')->cascadeOnDelete();
$table->uuid('participant_uuid')->nullable()->index();
$table->string('display_name')->nullable();
$table->string('user_ref')->nullable()->index();
$table->unsignedTinyInteger('rating');
$table->unsignedTinyInteger('audio_rating')->nullable();
$table->unsignedTinyInteger('video_rating')->nullable();
$table->text('comment')->nullable();
$table->timestamps();
$table->unique(['session_id', 'participant_uuid']);
});
}
public function down(): void
{
Schema::dropIfExists('meet_session_feedback');
}
};