25 lines
358 B
PHP
25 lines
358 B
PHP
|
|
<?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',
|
||
|
|
];
|
||
|
|
}
|