We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10aac26 commit 20e7449Copy full SHA for 20e7449
README.md
@@ -165,12 +165,12 @@ This adds multiple attributes to your model that will help you with creating/upd
165
$content // This is the raw content from the Gutenberg editor
166
$model = new MyModel;
167
168
-// The model has to exist or else the link between your model and the content can't be made
169
-$model->save();
170
-
171
// Add or update the content
172
$model->lb_content = $content;
173
+// Save the model
+$model->save();
+
174
// Get the rendered HTML
175
$model->lb_content;
176
0 commit comments