Laravel 8 更新 JSON 字段
更新 JSON 字段时,你可以使用 ->
语法访问 JSON 对象中相应的值。注意,此操作只能支持 MySQL 5.7+ 和 PostgreSQL 9.5+ :
$affected = DB::table('users')
->where('id', 1)
->update(['options->enabled' => true]);
更新 JSON 字段时,你可以使用 ->
语法访问 JSON 对象中相应的值。注意,此操作只能支持 MySQL 5.7+ 和 PostgreSQL 9.5+ :
$affected = DB::table('users')
->where('id', 1)
->update(['options->enabled' => true]);