Files
isaaccladandCursor 7ae26a467c
Deploy Ladill Meet / deploy (push) Successful in 47s
Add kiosk join/leave pages, waiting room, and meeting feedback.
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>
2026-07-01 13:33:48 +00:00

28 lines
545 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class SessionFeedback extends Model
{
protected $table = 'meet_session_feedback';
protected $fillable = [
'session_id',
'participant_uuid',
'display_name',
'user_ref',
'rating',
'audio_rating',
'video_rating',
'comment',
];
public function session(): BelongsTo
{
return $this->belongsTo(Session::class, 'session_id');
}
}