How to update Laravel Eloquent column cast as collection
I am on Laravel 10. I am using casting of a json column in the following way: protected $casts = [ 'meta' => 'collection', ... ]; When I am trying to update a collection value directly, e.g. $model->meta->put('test', 100); $model->save();…