Too many fillable fields in model Laravel? Too many fillable fields in model Laravel? laravel laravel

Too many fillable fields in model Laravel?


If you need to set all columns as fillable, do this in the model:

protected $guarded = [];

If you would like to make all attributes mass assignable, you may define the $guarded property as an empty array

https://laravel.com/docs/5.3/eloquent#mass-assignment


In such scenario, you can try doing the reverse. For example: id, created_at and updated_at field as $guarded. Like:

protected $guarded = ['id', 'created_at', 'updated_at'];

Except these rest will be considered as fillable i.e. mass assignable.

You can find details in Official Laravel Doc

Guarding Attributes

While $fillable serves as a "white list" of attributes that should be mass assignable, you may also choose to use $guarded. The $guarded property should contain an array of attributes that you do not want to be mass assignable. All other attributes not in the array will be mass assignable. So, $guarded functions like a "black list". Of course, you should use either $fillable or $guarded - not both.