How can I set default text in a RichEditor?
I want the content to display some custom text instead just being blank. Things like textInputs support
->default()
but that doesn't seem to work for RichEditors.
RichEditor::make('summary')
->default('my default text')
Solution:Jump to solution
Think I've found a workaround:
`->formatStateUsing(function ($state) {
if ($state) {
return $state;...
7 Replies
It supports. Any console errors?
No, none
Solution
Think I've found a workaround:
->formatStateUsing(function ($state) {
if ($state) {
return $state;
}
else {
return 'my default text';
}
})
Not sure if there's a better way though.default()
only works in the create page if you are using the panel builderAh ok. So is my approach the only way?
yes, you can use formatStateUsing
Cool thanks