notification inside action not showing
i have code action like this but when it create, the success notification not fired
how to tackle this?
thank you!
Solution:Jump to solution
I think
successNotification
will be used to override the default filament actions, so you dont need it here
```php
Forms\Components\Actions\Action::make('newCategoryForAsset')
->action(function (array $data): void {...5 Replies
try add
->send()
to the Notification::make
Hello, thank you again for helping me
I already tried that but seems the same, the notification does not show 🥹
add it to the
action
after the createOh i see, thank you so much!
Solution
I think
successNotification
will be used to override the default filament actions, so you dont need it here