F
Filament9mo ago
N1XN

Column headers using Split

The column headers are gone when using Split view. I am using Split because I want to show some collapsible content.
Split::make([
ImageColumn::make('avatar'),
TextColumn::make('name'),
]),
Panel::make([
Stack::make([
TextColumn::make('email'),
TextColumn::make('phone'),
]),
])->collapsible(),
Split::make([
ImageColumn::make('avatar'),
TextColumn::make('name'),
]),
Panel::make([
Stack::make([
TextColumn::make('email'),
TextColumn::make('phone'),
]),
])->collapsible(),
How can I restore the default headers instead of the Sort by dropdown?
No description
Solution:
You can't. Once you use split you are no longer a table
Jump to solution
2 Replies
Solution
toeknee
toeknee9mo ago
You can't. Once you use split you are no longer a table
N1XN
N1XN9mo ago
Ok thanks anyway @toeknee