Sometimes you may wish to "save" a given model without dispatching any events. You may accomplish this using the saveQuietly method:
saveQuietly
$user = User::findOrFail(1); $user->name = 'Victoria Faith'; $user->saveQuietly();