RichEditor doesn't upload Image on Simple Resource (Modal)
Could anyone help me with this point pls ?
Basically what I'm doing is creating a new RichEditor component into form, it works perfectly when I'm using complete resources (With CRUD pages), but for some reason, I don't know if it's a bug or I'm doing something wrong, when using in a simple resource, generatated simply with "php artisan filament:resource TestResource --simple" it doesn't work...
Same code in each resource:
public static function form(Form $form): Form { return $form ->schema([ RichEditor::make('body') ->label('Description') ->required(), ]); }
public static function form(Form $form): Form { return $form ->schema([ RichEditor::make('body') ->label('Description') ->required(), ]); }
Returns: Uncaught Could not find Livewire component in DOM tree on console