© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
Malcolm Turntbull

Is it possible to add an Action to an Infolist Section header?

I've been trying something like the following, but it doesn't seem to display:

return $infolist
    ->schema([
        Section::make('overview')
            ->action(
                Action::make('add-new-project')
                    ->form(fn (Form $form): Form => ProjectResource::form($form) )
                    ->size(ActionSize::ExtraSmall)
            )
            ->columns(8)
            ->heading('Project Overview')
            ->schema([
                //
            ])
        ]);
return $infolist
    ->schema([
        Section::make('overview')
            ->action(
                Action::make('add-new-project')
                    ->form(fn (Form $form): Form => ProjectResource::form($form) )
                    ->size(ActionSize::ExtraSmall)
            )
            ->columns(8)
            ->heading('Project Overview')
            ->schema([
                //
            ])
        ]);

I can get Actions to display everywhere else, but they don't seem to want to sit in the header strip, right where they'd be most useful! I've tried the Action method, the RegisterActions method...
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

Is it possible to add paramaters to an import action?
FilamentFFilament / ❓┊help
3y ago
Add field to header infolist
FilamentFFilament / ❓┊help
17mo ago
Test Section header action
FilamentFFilament / ❓┊help
3mo ago
Section header action hanging
FilamentFFilament / ❓┊help
4mo ago