VanOns/laraberg – реализация гутенберга на ларавел
$content // This is the raw content from the Gutenberg editor
$model = new MyModel;
// Add or update the content & (if true is provided) call save() on the content object
$model->setContent($content, true);
// Get the rendered HTML inside of a container
// This is the function you should use for rendering the content on a page
$model->renderContent();
// Get the rendered content
$model->getRenderedContent();
// Get the raw content
$model->getRawContent();