© 2026 Hedgehog Software, LLC

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

How to add a static row at the top in table

How do I show static entry in the table which is not in the database .

Want to show name and email as like we do in normal html.
how to add a static row at the top

public static function table(Table $table): Table
{
return $table

->columns([

Tables\Columns\TextColumn::make('name')
->searchable()->sortable(),
Tables\Columns\TextColumn::make('email')
->searchable()->sortable(),


])
->defaultSort('id', 'desc')
->filters([

])
->actions([

])
->bulkActions([

]);

}
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

TableAction in the first row of a table
FilamentFFilament / ❓┊help
3y ago
How to add some text at the top of the table?
FilamentFFilament / ❓┊help
3y ago
Add a notice to the top of a table page
FilamentFFilament / ❓┊help
3y ago