FilamentF
Filament3y ago
KA

Two columns in one cell

Wanted to show ImageColumn and InputColumn side by side like documentation. Any idea how to achieve it?
demo.png
Solution
in your first Split element(image) add the following attribute:
->grow(false)

then in your "name" column you can use
->description(fn ($record): ?string => $record->email)

to show the email below the name 🙂
Was this page helpful?