added items
This commit is contained in:
parent
58618259a5
commit
194a0a81e0
3 changed files with 74 additions and 0 deletions
25
app/Item.php
Normal file
25
app/Item.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?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 = [];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue