2019-11-15 20:59:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Event extends Model
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
2019-11-28 03:52:53 +00:00
|
|
|
'eid', 'name', 'slug', 'begin', 'end', 'pre_begin', 'post_end'
|
2019-11-15 20:59:34 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-11-15 21:10:28 +00:00
|
|
|
protected $hidden = [];
|
2019-11-28 03:52:53 +00:00
|
|
|
}
|