Answers for "updating records in laravel"

PHP
19

laravel update from query

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

update or insert in laravel

DB::table('users')
    ->updateOrInsert(
        ['email' => '[email protected]', 'name' => 'John'],
        ['votes' => '2']
    );
Posted by: Guest on January-20-2021

Browse Popular Code Answers by Language