In each Laravel model, I want to declare fillable like the following.
protected $fillable = [
'object_name','attributes','item','cost','status','category',
'object_id','status','customer_id','provider_id'
];
After that, I can insert value in the database. Is there any way to make all columns of every newly created table fillable, or will I need to change it every time?