F
Filament15mo 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),
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.
No description
Solution:
Is description fillable on the model.?
Jump to solution
2 Replies
Solution
awcodes
awcodes15mo ago
Is description fillable on the model.?
Adam
AdamOP15mo ago
It's been a long day, that was it. Thanks for pointing that out 🙂

Did you find this page helpful?