2019-11-15 21:15:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-11-28 23:53:59 +00:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-11-15 21:15:58 +00:00
|
|
|
|
|
|
|
class Container extends Model
|
|
|
|
{
|
2019-11-28 23:53:59 +00:00
|
|
|
use SoftDeletes;
|
2019-11-15 21:15:58 +00:00
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
2019-11-28 03:52:53 +00:00
|
|
|
'cid', 'name'
|
2019-11-15 21:15:58 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = [];
|
2019-11-28 03:52:53 +00:00
|
|
|
}
|