I have the following code in \'saved\' model event:
Session::flash(\'info\', \'Data has been saved.\')`
so everytime the model is saved I
To answer the question for anyone who ends up here looking for the solution, you can disable model listeners on an instance with the unsetEventDispatcher() method:
$flight = App\Flight::create(['name' => 'Flight 10']);
$flight->unsetEventDispatcher();
$flight->save(); // Listeners won't be triggered