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

I've tried
\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.
Was this page helpful?