© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•16mo ago•
7 replies
Steff

Action works fast but modal window hangs?

Tables\Actions\Action::make('Run')
    ->action(function ($record) {
        $service = new MyService();
        $result = $service->myServiceClass($record->id);
        // dd($result); up to here is fast, the action is ready
        // then the modal window hangs also without Notification
         Notification::make()
         ...
    })
    ->requiresConfirmation(),
Tables\Actions\Action::make('Run')
    ->action(function ($record) {
        $service = new MyService();
        $result = $service->myServiceClass($record->id);
        // dd($result); up to here is fast, the action is ready
        // then the modal window hangs also without Notification
         Notification::make()
         ...
    })
    ->requiresConfirmation(),

does anyone have any ideas as to why this could be?
Solution
I think i found it:
'debug' => FALSE,
'debug' => FALSE,
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

Hidden Action and action modal not opening. But if remove hidden the modal works
FilamentFFilament / ❓┊help
2y ago
Modal window
FilamentFFilament / ❓┊help
2y ago
Modal action
FilamentFFilament / ❓┊help
2y ago
Filament v4 action modal, inside action modal
FilamentFFilament / ❓┊help
5mo ago