I'm using laravel nova.
I added model observer. Like that when resource is created, updated etc... observer can call other methods.
created event and deleted event are called great.
but updated event is not called. Do you know why ?
here : https://nova.laravel.com/docs/3.0/resources/#resource-events it's saying that nova call save, delete, forceDelete and restore event. So i'm confused about update event. Is "Save" event is called just for creation or for creation and update event ?
I don't know much about Nova, but Laravel won't trigger the observer when doing mass updates.
"When issuing a mass update via Eloquent, the saving, saved, updating, and updated model events will not be fired for the updated models. This is because the models are never actually retrieved when issuing a mass update." - https://laravel.com/docs/8.x/eloquent#mass-updates