how to use update in laravel code example

Example 1: update or create laravel

$user = User::updateOrCreate(['name' => request()->name], [ 
    'foo' => request()->foo
]);

Example 2: laravel force delete

Product::onlyTrashed()->find(2)->forceDelete();

Example 3: create or update laravel

DB::table('vendor_managements')->where('vendor_code', $vendor_code)->update(array('state'=> $state_namne));

Example 4: laravel updateOrInsert

DB::table('users')
    ->updateOrInsert(
        ['email' => '[email protected]', 'name' => 'John'],
        ['votes' => '2']
    );

Example 5: laravel update

<!-mass update-->
App\Models\Flight::where('active', 1)
          ->where('destination', 'San Diego')
          ->update(['delayed' => 1]);

Example 6: laravel force delete

Product::onlyTrashed()->where('deleted_at', '<', Carbon::subDays(30))->forceDelete();

Tags:

Php Example