c3lf-system-3/app/Event.php
Jan Felix Wiebe ab079df35d created model
2019-11-15 21:59:34 +01:00

24 lines
No EOL
381 B
PHP

<?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 = [];