laravel create and update code example
Example 1: create or update in laaravel
$data = $request->all();
UserRule::updateOrCreate(
['id' => 1],
$data
);
Example 2: laravel create or update
$flight = App\Models\Flight::updateOrCreate(
['departure' => 'Oakland', 'destination' => 'San Diego'],
['price' => 99, 'discounted' => 1]
);
Example 3: laravel updateOrInsert
DB::table('users')
->updateOrInsert(
['email' => '[email protected]', 'name' => 'John'],
['votes' => '2']
);
Example 4: update laravel
use App\Models\Flight;
$flight = Flight::find(1);
$flight->name = 'Paris to London';
$flight->save();
Example 5: laravel update
$flight = App\Models\Flight::find(1);
$flight->name = 'New Flight Name';
$flight->save();
Example 6: laravel update first
Model::where(['x' => 1, 'y' => 2])->first()->update([...]);