© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
7 replies
Vp

section footer action to submit the section schema

How can I make section footer Action to submit the section schema form?
docs links: https://filamentphp.com/docs/3.x/forms/layout/section#adding-actions-to-the-sections-footer

I create a page
filament-page
filament-page
and added custom multiple form (https://filamentphp.com/docs/3.x/forms/adding-a-form-to-a-livewire-component#using-multiple-forms)

I want to submit the section form by using the section footer action, how can I achieve this?

Code:
return $form
    ->schema([
        Forms\Components\Section::make('test')
            ->aside()
            ->schema([
                Forms\Components\TextInput::make('title'),
            ])
            ->footerActions([
                Forms\Components\Actions\Action::make('save') // how can I make this action to submit section schema
                    ->action(function (array $data) {
                        dd($data);
                    }),
            ]),
    ])
return $form
    ->schema([
        Forms\Components\Section::make('test')
            ->aside()
            ->schema([
                Forms\Components\TextInput::make('title'),
            ])
            ->footerActions([
                Forms\Components\Actions\Action::make('save') // how can I make this action to submit section schema
                    ->action(function (array $data) {
                        dd($data);
                    }),
            ]),
    ])
Solution
I've created a custom button instead of footer action and closing this as completed
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

Modal footer submit
FilamentFFilament / ❓┊help
3y ago
Split action footer alignment, delete btn start & submit btn end
FilamentFFilament / ❓┊help
3y ago
Testing Section header/footer Actions
FilamentFFilament / ❓┊help
3mo ago
Section has no footer actions?
FilamentFFilament / ❓┊help
2y ago