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