© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
11 replies
Ramon.vV

FooterActions method not present in Filament\Forms\Components\Section;

For some reason, I have no footerActions method inside this class. According to the docs, this should be correct:
use Filament\Forms\Components\Section;

  Section::make('Moderate Request')
                    ->footerActions([
                        Action::make('test')
                            ->action(function () {
                                // ...
                            }),
                    ]) 
use Filament\Forms\Components\Section;

  Section::make('Moderate Request')
                    ->footerActions([
                        Action::make('test')
                            ->action(function () {
                                // ...
                            }),
                    ]) 

Which already gives me the following error:

 Method Filament\Forms\Components\Section::footerActions does not exist.  
 Method Filament\Forms\Components\Section::footerActions does not exist.  

The docs clearly state to add this use
 use Filament\Forms\Components\Section; 
 use Filament\Forms\Components\Section; 


https://filamentphp.com/docs/3.x/forms/layout/section#adding-actions-to-the-sections-footer

I checked the Section class but there is no function regarding footerActions there. Are the docs outdated in this regard, or what's happening here? 🤔
Section - Form Builder - Filament
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

Undefined type 'Filament\Forms\Components\Section'.
FilamentFFilament / ❓┊help
2mo ago
Method Filament\Forms\Components\CheckboxList::allowHtml does not exist.
FilamentFFilament / ❓┊help
11mo ago
Toggle sections in filament forms
FilamentFFilament / ❓┊help
3y ago
Error: Method Filament\Forms\Components\Actions\Action::isModalClosedByClickingAway does not exist
FilamentFFilament / ❓┊help
3y ago