laravel elequent delete code example

Example 1: laravel delete where

DB::table('users')->where('id', $id)->delete();

Example 2: laravel create or update

// If there's a flight from Oakland to San Diego, set the price to $99.
// If no matching model exists, create one.
$flight = App\Models\Flight::updateOrCreate(
    ['departure' => 'Oakland', 'destination' => 'San Diego'],
    ['price' => 99, 'discounted' => 1]
);

Example 3: laravel eloquent remove from db

$res=User::where('id',$id)->delete();

Example 4: laravel delete

DB::table('users')->where('votes', '>', 100)->delete();

Example 5: Laravel Delete

Flight::destroy(1);

Flight::destroy(1, 2, 3);

Flight::destroy([1, 2, 3]);

Flight::destroy(collect([1, 2, 3]));

Example 6: laravel update


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

Tags:

Misc Example