edms2023/app/Event.php

25 lines
358 B
PHP
Raw Permalink Normal View History

2023-09-14 20:59:46 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'events';
protected $fillable = [
'user_id',
'title',
'text',
'link',
'start_date_time',
'end_date_time',
];
}