How can I add a textarea input column to a table?

I've tried
\Filament\Tables\Columns\TextInputColumn::make('notes')
->type('textarea')
\Filament\Tables\Columns\TextInputColumn::make('notes')
->type('textarea')
but it doesnt change anything
Solution:
Textarea is not a valid input type. It’s a separate html element. To my knowledge there is no textarea column. You’d have to do it as a custom column.
Jump to solution
2 Replies
Solution
awcodes
awcodes4mo ago
Textarea is not a valid input type. It’s a separate html element. To my knowledge there is no textarea column. You’d have to do it as a custom column.
brainbarett
brainbarettOP4mo ago
I went the custom column route

Did you find this page helpful?