© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
3 replies
Felix

filament Table main content goes under the footer.

Hello, I am working on an Livewire component with an filament table (made via:
php artisan make:livewire-table
php artisan make:livewire-table
) and I am adding an custom footer to it, but the table goes under the footer (the footer is added by:
->contentFooter()
->contentFooter()
). so the order of the table is: Header -> Footer -> Table. and I can't find the solution in the docs. what am I doing wrong?

the code:
public function table(Table $table): Table
    {
        return $table
            ->heading('upcoming Projects')
            ->query(Project::query())
            ->modifyQueryUsing(fn(Builder $query) => $query->where('project_date','>=', now())->take(4))
            ->columns([
                Tables\Columns\TextColumn::make('name'),
                Tables\Columns\TextColumn::make('project_date'),
            ])
            ->actions([
                Tables\Actions\Action::make('go to')
                    ->url(fn (Project $record): string => route('project.show', ['id' => $record]))
            ])
            ->contentFooter(\view('livewire.projects.footers.table-footer'))
            ->paginated(false);
    }
public function table(Table $table): Table
    {
        return $table
            ->heading('upcoming Projects')
            ->query(Project::query())
            ->modifyQueryUsing(fn(Builder $query) => $query->where('project_date','>=', now())->take(4))
            ->columns([
                Tables\Columns\TextColumn::make('name'),
                Tables\Columns\TextColumn::make('project_date'),
            ])
            ->actions([
                Tables\Actions\Action::make('go to')
                    ->url(fn (Project $record): string => route('project.show', ['id' => $record]))
            ])
            ->contentFooter(\view('livewire.projects.footers.table-footer'))
            ->paginated(false);
    }
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

larazeus popover pop under table header/footer
FilamentFFilament / ❓┊help
2y ago
footer widgets goes missing after changing table filters
FilamentFFilament / ❓┊help
3y ago
Filament V4 Custom footer
FilamentFFilament / ❓┊help
6mo ago
Change the table content
FilamentFFilament / ❓┊help
3y ago