© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
18 replies
Eric

Grid view loses headers

https://filamentphp.com/docs/3.x/tables/layout#arranging-records-into-a-grid
When i use the grid layout, then the table loses the headers.
In my case, I need to show to the user the field names of the values that are being shown in each record in the grid

for example:
table mode:
id    n     cp
2     4     45
[more rows here]
[more rows here]
id    n     cp
2     4     45
[more rows here]
[more rows here]


in grid mode:
2       34     more columns here
4       5
45      1
2       34     more columns here
4       5
45      1

in this grid mode, the user has to remember which field name is which one, otherwise they see only numbers

so id like to achieve something like this:
id      id
2       34     more columns here

n       n
4       5

cp      cp
45      1
id      id
2       34     more columns here

n       n
4       5

cp      cp
45      1


should i use an infolist for that somehow? what should i do?
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

Grid view table
FilamentFFilament / ❓┊help
3w ago
toggle grid view
FilamentFFilament / ❓┊help
3y ago
Grid View on custom page
FilamentFFilament / ❓┊help
2y ago
Using Filament grid in blade view
FilamentFFilament / ❓┊help
2y ago