© 2026 Hedgehog Software, LLC

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

Section->headerActions->Select

Am I missing this documentation somewhere?
Solution
You could create a custom action that extends a Forms\Components\Action, then it would work...

<?php

namespace App\Actions;

use Filament\Actions\Concerns\HasSelect;
use Filament\Forms\Components\Actions\Action;

class MySelectAction extends Action
{
    use HasSelect;

    protected function setUp(): void
    {
        parent::setUp();

        $this->view('filament-actions::select-action');
    }
}
<?php

namespace App\Actions;

use Filament\Actions\Concerns\HasSelect;
use Filament\Forms\Components\Actions\Action;

class MySelectAction extends Action
{
    use HasSelect;

    protected function setUp(): void
    {
        parent::setUp();

        $this->view('filament-actions::select-action');
    }
}


Section::make()
  ->headerActions([
      \App\Actions\MySelectAction::make('hi')
      ->options([
          'option1' => 'Option 1',
      ])
  ])
Section::make()
  ->headerActions([
      \App\Actions\MySelectAction::make('hi')
      ->options([
          'option1' => 'Option 1',
      ])
  ])
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

Trigger RelationManager `EditAction` from Infolist Section `headerActions`
FilamentFFilament / ❓┊help
3y ago
How to test `headerActions`/`footerActions` from the Section component?
FilamentFFilament / ❓┊help
2y ago
"live" headerActions
FilamentFFilament / ❓┊help
15mo ago
Section & manual collapsed via custom headerActions ... Is this a bug?
FilamentFFilament / ❓┊help
5mo ago