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]


in grid mode:
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


should i use an infolist for that somehow? what should i do?
Was this page helpful?