Files
kulakpos_web/public/restaurant/Modules/Authentication/app/Models/ZoomMeeting.php

25 lines
434 B
PHP

<?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',
];
}