RichEditor::make('content')
->required()
->fileAttachmentsDirectory('steps/images')
->fileAttachmentsAcceptedFileTypes(['image/png', 'image/jpeg'])
->fileAttachmentsMaxSize(5120)
->resizableImages()
->columnSpanFull()
->toolbarButtons([
['bold', 'italic', 'underline', 'strike', 'textColor'],
[ToolbarButtonGroup::make('Heading', ['h1', 'h2', 'h3'])->icon('fi-o-heading')],
[ToolbarButtonGroup::make('Alignment', ['alignStart', 'alignCenter', 'alignEnd', 'alignJustify'])],
['blockquote', 'codeBlock', 'bulletList', 'orderedList'],
['table', 'attachFiles'],
['undo', 'redo'],
])
RichEditor::make('content')
->required()
->fileAttachmentsDirectory('steps/images')
->fileAttachmentsAcceptedFileTypes(['image/png', 'image/jpeg'])
->fileAttachmentsMaxSize(5120)
->resizableImages()
->columnSpanFull()
->toolbarButtons([
['bold', 'italic', 'underline', 'strike', 'textColor'],
[ToolbarButtonGroup::make('Heading', ['h1', 'h2', 'h3'])->icon('fi-o-heading')],
[ToolbarButtonGroup::make('Alignment', ['alignStart', 'alignCenter', 'alignEnd', 'alignJustify'])],
['blockquote', 'codeBlock', 'bulletList', 'orderedList'],
['table', 'attachFiles'],
['undo', 'redo'],
])