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:
Think I've found a workaround: `->formatStateUsing(function ($state) { if ($state) { return $state;...
Jump to solution
7 Replies
LeandroFerreira
LeandroFerreira2mo ago
It supports. Any console errors?
urbycoz
urbycoz2mo ago
No, none
Solution
urbycoz
urbycoz2mo ago
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.
LeandroFerreira
LeandroFerreira2mo ago
default() only works in the create page if you are using the panel builder
urbycoz
urbycoz2mo ago
Ah ok. So is my approach the only way?
LeandroFerreira
LeandroFerreira2mo ago
yes, you can use formatStateUsing
urbycoz
urbycoz2mo ago
Cool thanks
Want results from more Discord servers?
Add your server