Allow mass assignment for all the models in Laravel
While it’s not recommended to allow all of your model’s attributes mass assignable since in that case you need to make sure to hand-craft the arrays passed to Eloquent’s fill
, create
, and update
methods.
But there might be some instances where you may want to consider unguarding all of the attributes.
The de-facto way of unguarding a single model is to set an empty array to the $guarded
property like so.
protected $guarded = [];
But what if you want to make all of your models as mass assignable all at once? How would you do that?
Well, to do that, you need to use the unguard()
method on the Illuminate\Database\Eloquent\Model
class. This can be done in the boot
method of the applications’s AppServiceProvider
like so.
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Model::unguard();
}
}
That’s it! This will make all your models mass assignable from a single place.
👋 Hi there! I'm Amit. I write articles about all things web development. If you like what I write and want me to continue doing the same, I would like you buy me some coffees. I'd highly appreciate that. Cheers!