© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2mo ago•
1 reply
BigBlueMonkey

Add table filter to header actions

Table builder4️⃣v4
Is there a simple way to add the table filter to the header rather than have it appear below the title section on a table?

public function table(Table $table): Table
{
    return $table
        ->query(
            RequiredAction::query()
                ->with('actionable')
                ->where('next_due_date', '>', Carbon::now())
                ->orderBy('next_due_date')
                ->limit(5)
        )
        ...
        ->filters([
            SelectFilter::make('actionable_type')
                ->label('Type')
                ->options([
                    Frame::class => 'Frame',
                    Picture::class => 'Picture',
                ]),
          ])
public function table(Table $table): Table
{
    return $table
        ->query(
            RequiredAction::query()
                ->with('actionable')
                ->where('next_due_date', '>', Carbon::now())
                ->orderBy('next_due_date')
                ->limit(5)
        )
        ...
        ->filters([
            SelectFilter::make('actionable_type')
                ->label('Type')
                ->options([
                    Frame::class => 'Frame',
                    Picture::class => 'Picture',
                ]),
          ])
image.png
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

Place date picker filter on table header actions
FilamentFFilament / ❓┊help
7mo ago
Add header Actions to a slideover
FilamentFFilament / ❓┊help
2y ago
Table Header Actions: How to access data?
FilamentFFilament / ❓┊help
2y ago
add action to group header table
FilamentFFilament / ❓┊help
10mo ago