, iterable> */ public static function castUsing(array $arguments) { return new class implements CastsAttributes { public function get($model, $key, $value, $attributes) { if (! isset($attributes[$key])) { return; } $data = json_decode($attributes[$key], true); return is_array($data) ? new Collection($data) : null; } public function set($model, $key, $value, $attributes) { return [$key => json_encode($value)]; } }; } }