c3lf-system-3/app/Container.php
2019-11-15 22:15:58 +01:00

25 lines
No EOL
365 B
PHP

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