I faced this problem yesterday while playing with Laravel where I need to save a model but I dont want to trigger any model events .
Im amazed how Laravel already thought this problem would arise and made a simple solution for it.
$raceEvent = RaceEvent::last();
$raceEvent->venue = "Test Venue";
$raceEvent->saveQuietly(); // magic sauce here