{"param": {"0": "0"}}
Section::where([
"id" => 1
])->update([
"elements->param" => json_encode(["TEST" => "TEST"])
]);
{"param": "{\"TEST\":\"TEST\"}"}
{"param": {"TEST": "TEST"}}
Section::where([
"id" => 1
])->update([
"elements->param" => ["TEST" => "TEST"]
]);