From 20e7449e0a7d93d438f8f9eb1a3029aa7058f30a Mon Sep 17 00:00:00 2001 From: Maurice Wijnia Date: Mon, 19 Aug 2019 09:45:36 +0200 Subject: [PATCH] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5e733e6..65af9308 100644 --- a/README.md +++ b/README.md @@ -165,12 +165,12 @@ This adds multiple attributes to your model that will help you with creating/upd $content // This is the raw content from the Gutenberg editor $model = new MyModel; -// The model has to exist or else the link between your model and the content can't be made -$model->save(); - // Add or update the content $model->lb_content = $content; +// Save the model +$model->save(); + // Get the rendered HTML $model->lb_content;