© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•10mo ago•
15 replies
Mikail

Modal from an extra footer action to bind with modal form?

Is there a way make modal extra footer action to work with modal the modal form in terms of validation and form data access. The point is to be able to trigger confirmation after filling the modal form before action.

Action::make('edit')
   ->form([
        // ...
    ])
    ->extraModalFooterActions([
        Action::make('submit')
            ->requiresConfirmation()
            ->action(function () {
                // $data
            }),
    ])
Action::make('edit')
   ->form([
        // ...
    ])
    ->extraModalFooterActions([
        Action::make('submit')
            ->requiresConfirmation()
            ->action(function () {
                // $data
            }),
    ])
Solution
Sorry guess I’m just not fully following the use case. Is this what you are trying to achieve: https://filamentphp.com/docs/3.x/actions/modals#opening-another-modal-from-an-extra-footer-action
Modals - Actions - Filament
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

Access form with extra modal footer
FilamentFFilament / ❓┊help
13mo ago
Pass action form data to extra modal footer actions
FilamentFFilament / ❓┊help
3y ago
Refresh a modal after an extra footer action is performed?
FilamentFFilament / ❓┊help
2y ago
Update Form from Action Modal
FilamentFFilament / ❓┊help
2y ago