I have the following code in \'saved\' model event:
Session::flash(\'info\', \'Data has been saved.\')`
so everytime the model is saved I
In laravel 8.x :
Saving A Single Model Without Events
Sometimes you may wish to "save" a given model without raising any events. You may accomplish this using the saveQuietly method:
$user = User::findOrFail(1); $user->name = 'Victoria Faith'; $user->saveQuietly();
See Laravel docs