FilamentF
Filament3y 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(),


How can I restore the default headers instead of the Sort by dropdown?
191834045-e423afd4-1ad3-4636-8635-fe9453423555.png
Solution
You can't. Once you use split you are no longer a table
Was this page helpful?