c3lf-system-3/app/Container.php

25 lines
365 B
PHP
Raw Normal View History

2019-11-15 21:15:58 +00:00
<?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 = [];
}