Skip to content

Commit

Permalink
fix typos in update operation
Browse files Browse the repository at this point in the history
  • Loading branch information
pxpm committed Sep 20, 2024
1 parent c05046e commit 19eecff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 6.x/crud-operation-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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.

0 comments on commit 19eecff

Please sign in to comment.