FilamentF
Filament3y ago
core

observer not triggered from EditAction

I have this editaction in a relationsmanager it's updating correctly the pivot attributes but not triggering an updating() observer
 ->using(function (Model $record, array $data): Model {
                    
                        $record->pivot->update($data);

                        return $record;
                    }),  
Was this page helpful?