c3lf-system-3/app/Item.php

25 lines
403 B
PHP
Raw Normal View History

2019-11-15 21:26:54 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Item extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'iid', 'bezeichnung', 'wann', 'wo', 'eid', 'cid'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
}