Textarea doesn't appear in my component when V3 update
I have a component when I add a text area by this way:
and this is printed in the view by:
{{ $getCommentComponent() }}
This works correctly in v2, but when I update to v3, the text area doesn't appear.
use Filament\Forms\Components\Textarea;Solution:Jump to solution
Ow, i found the problem. I have the text area into a <x-filament::modal> in the x-slot name="subheading".
This slot don't exists in v3. I replace this slot as a simple div into the modal component. So now, the text area is printed correctly....
4 Replies
Somebody can help me?
how about {{ $form->getCommentComponent }}
Undefined variable $form
Solution
Ow, i found the problem. I have the text area into a <x-filament::modal> in the x-slot name="subheading".
This slot don't exists in v3. I replace this slot as a simple div into the modal component. So now, the text area is printed correctly.