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>
28 lines
545 B
PHP
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');
|
|
}
|
|
}
|