laravel eloquent update multiple records

Solutions on MaxInterview for laravel eloquent update multiple records by the best coders in the world

showing results for - "laravel eloquent update multiple records"
Ilaria
27 Sep 2019
1// in a single line here
2$values = Cart::where('session_id', $id)->update(['data'=>$data]);
Domenico
21 Nov 2016
1// If there's a flight from Oakland to San Diego, set the price to $99.
2// If no matching model exists, create one.
3$flight = App\Flight::updateOrCreate(
4    ['departure' => 'Oakland', 'destination' => 'San Diego'],
5    ['price' => 99]
6);