© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•16mo ago•
4 replies
Arjan

successNotificationTitle for table action is not showing

The successNotificationTitle for my (custom) action is not showing after the action has been successfully executed. Does anyone know why? This is my code:

 Tables\Actions\Action::make('Watchlist')
                        ->color('warning')
                        ->icon(MyWatchlistResource::getNavigationIcon())
                        ->successNotificationTitle('Project added to your watchlist')
                        ->action(function (Project $record) {
                            Watchlist::updateOrCreate([
                                'project_id' => $record->id,
                                'user_id'    => auth()->user()->id,
                            ]);
                        }),
 Tables\Actions\Action::make('Watchlist')
                        ->color('warning')
                        ->icon(MyWatchlistResource::getNavigationIcon())
                        ->successNotificationTitle('Project added to your watchlist')
                        ->action(function (Project $record) {
                            Watchlist::updateOrCreate([
                                'project_id' => $record->id,
                                'user_id'    => auth()->user()->id,
                            ]);
                        }),
Solution
you need to call
success
success
like
->action(function (Tables\Actions\Action $action) {
    // your action...

    $action->success();
})
->action(function (Tables\Actions\Action $action) {
    // your action...

    $action->success();
})
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

table action not showing
FilamentFFilament / ❓┊help
12mo ago
Table action modal not showing up for some records
FilamentFFilament / ❓┊help
12mo ago
Action modal is not showing
FilamentFFilament / ❓┊help
2y ago
Repeater with ->table( is not showing as table
FilamentFFilament / ❓┊help
6mo ago