I tried to do that way but I just got a notification ```protected function beforeCreate(): void { Notification::make() ->title('Saved successfully') ->success() ->body('Changes to the post have been saved.') ->actions([ Action::make('view') ->button(), Action::make('undo') ->color('gray') ]) ->send(); $this->halt(); } ```