我的桌子上有数百个字段,而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',.......);
}
答案 0 :(得分:1)
你可以采用相反的方式:
指定受保护的属性( 不 的所有字段均可填写)。
protected $guarded = array('id', 'created_at', '...');
完全删除$ fillable。