FilamentF
Filament3y ago
Adam

Textarea doesn't save

I have a fairly straight forward usage of the Textarea:

use Filament\Forms\Components\Textarea;

Forms\Components\Textarea::make('description')
                    ->maxLength(65535)
                    ->columnSpan(3),

The form displays properly and all.

However, when I "save" the form, this value of whatever is in the Textarea is lost. Sometimes it requires me to edit the textarea a few times before the form is updated. Attached is my table's schema.
Screenshot_2023-12-16_at_15.17.21.png
Solution
Is description fillable on the model.?
Was this page helpful?