© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago
StanProg

BulkAction action() is not executing on click

I have defined a BulkAction like that:
            BulkAction::make('test')
                ->label('test')
                ->action(function (Collection $records) {
                    Notification::make()
                        ->title('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
                        ->send();
                }),
            BulkAction::make('test')
                ->label('test')
                ->action(function (Collection $records) {
                    Notification::make()
                        ->title('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
                        ->send();
                }),

The button appears (and it was working before). Now it seems that the action() is not executed.

I ran
artisan optimize:clear
artisan optimize:clear
to clear the caches, and
npm run build
npm run build
just in case, but still the action() mehtod is not called - as it does not accept the click on the button. Any ideas how can I debug that?
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

BulkAction: an action relating to clicking on items (selecting them).
FilamentFFilament / ❓┊help
12mo ago
Excel:download() not triggering from BulkAction Action.
FilamentFFilament / ❓┊help
11mo ago
Action button not working on first click
FilamentFFilament / ❓┊help
2y ago
Action on click row table
FilamentFFilament / ❓┊help
2y ago