From 19eecff04608dc60e7915dc7718c040c7d48b42b Mon Sep 17 00:00:00 2001 From: pxpm Date: Fri, 20 Sep 2024 10:30:58 +0100 Subject: [PATCH] fix typos in update operation --- 6.x/crud-operation-update.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/6.x/crud-operation-update.md b/6.x/crud-operation-update.md index e6e7e92f..f994b6f9 100644 --- a/6.x/crud-operation-update.md +++ b/6.x/crud-operation-update.md @@ -374,6 +374,7 @@ class Product extends Model protected $primaryKey = 'id'; protected $fillable = ['name', 'category_id', 'options', 'price', 'tags']; protected $translatable = ['name', 'options']; +} ``` > You DO NOT need to cast translatable string columns as array/json/object in the Eloquent model. From Eloquent's perspective they're strings. So: @@ -453,4 +454,4 @@ If you want to display a **Delete** button right on the **Update** operation, yo } ``` -This will allow admins to remove entries right from the **Update Operation**, and it will redirect them back ot the **List Operation** afterwards. +This will allow admins to remove entries right from the **Update Operation**, and it will redirect them back to the **List Operation** afterwards.