What's the best way to display "Rich Editor" JSON content within an Infolist?
I'm thinking about "RepeatableEntry" but that feels like I'll have to do a lot of custom code, is there an easy way to display this content by using a view entry for a Rich Editor?
Solution:Jump to solution
I have since discovered a solution for this, in case anyone stumbles across this thread in the future:
```php
TextEntry::make('content')
->state(fn ($record): string => RichContentRenderer::make($record->content)->toHtml())...
1 Reply
Solution
I have since discovered a solution for this, in case anyone stumbles across this thread in the future: