added containers

This commit is contained in:
Jan Felix Wiebe 2019-11-15 22:15:58 +01:00
parent 6ca1c00b76
commit 58618259a5
3 changed files with 81 additions and 9 deletions

25
app/Container.php Normal file
View file

@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Container extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'cid'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = [];
}