绕过“大规模分配”laravel

时间:2016-05-30 11:08:32

标签: laravel-5

我的桌子上有数百个字段,而t want to write all the field in the $ fillable array. Is there any way to绕过$ fillable process`?

class MyClass extends Eloquent {

protected $fillable = array('firstField', 'secondField',.......);

}

1 个答案:

答案 0 :(得分:1)

你可以采用相反的方式:

指定受保护的属性( 的所有字段均可填写)。

protected $guarded = array('id', 'created_at', '...');

完全删除$ fillable。