How I display bullets and number from RichEditor
Please tell how to show bullets and number in the description filed.
3 Replies
Anyone can help me for this ?
if you want to render a html in the description, you could create a custom view
@Leandro Ferreira
Thank you for your response . I took the reference from the filament demo and same thing i implement in my project . And for html rendering I have used ->html() but even that it's not showing bullet and number against the description field .
For display in the cart . I have used the following code .
Tables\Columns\TextColumn::make('description')->html()
->wrap(),
And while storing the description i have used the code like this
->schema([
Forms\Components\RichEditor::make('description')
->disableToolbarButtons([
'attachFiles',
'link',
])
->required(),
]),