Answers for "Updating JSON Column in laravel"

0

Updating JSON Column in laravel

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['options->enabled' => true]);
Posted by: Guest on April-27-2021

Code answers related to "Updating JSON Column in laravel"

Browse Popular Code Answers by Language