Files

25 lines
434 B
PHP
Raw Permalink Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace Modules\Authentication\Models;
use Illuminate\Database\Eloquent\Model;
class ZoomMeeting extends Model
{
protected $fillable = [
'restaurant_id',
'meeting_id',
'topic',
'agenda',
'start_time',
'duration',
'password',
'join_url',
'start_url',
'created_by',
'created_at',
'updated_at',
'deleted_at',
];
}