Answers for "laravel 6 update record"

PHP
19

laravel update from query

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);
Posted by: Guest on May-07-2020

Browse Popular Code Answers by Language