c3lf-system-3/app/Event.php

24 lines
381 B
PHP
Raw Normal View History

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 = [
'eid', 'name', 'short_name'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];