laravel create or update

Solutions on MaxInterview for laravel create or update by the best coders in the world

showing results for - "laravel create or update"
Anna
19 Oct 2018
1//if there is id => 1 for user role , update this and if there is not 
2//id => 1 create it and insert some data for it
3 $data = $request->all();
4   UserRule::updateOrCreate(
5            ['id' => 1],
6            $data
7        );
Antonio
28 May 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, 'discounted' => 1]
6);
Emelie
30 Sep 2019
1# The easiest way to create a model instance is using the 
2# make:model Artisan command:
3
4php artisan make:model Flight
5
6# If you would like to generate a database migration when you 
7# generate the model, you may use the --migration or -m option:
8
9php artisan make:model Flight --migration
10php artisan make:model Flight -m
Éloïse
24 Jul 2016
1// Retrieve flight by name, or create it if it doesn't exist...
2$flight = App\Flight::firstOrCreate(['name' => 'Flight 10']);
3
4// Retrieve flight by name, or create it with the name, delayed, and arrival_time attributes...
5$flight = App\Flight::firstOrCreate(
6    ['name' => 'Flight 10'],
7    ['delayed' => 1, 'arrival_time' => '11:30']
8);
9
10// Retrieve by name, or instantiate...
11$flight = App\Flight::firstOrNew(['name' => 'Flight 10']);
12
13// Retrieve by name, or instantiate with the name, delayed, and arrival_time attributes...
14$flight = App\Flight::firstOrNew(
15    ['name' => 'Flight 10'],
16    ['delayed' => 1, 'arrival_time' => '11:30']
17);
Edoardo
01 Sep 2018
1$user = User::updateOrCreate(['name' => request()->name], [ 
2    'foo' => request()->foo
3]);
4
Daniel
03 Aug 2018
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\Models\Flight::updateOrCreate(
4    ['departure' => 'Oakland', 'destination' => 'San Diego'],
5    ['price' => 99, 'discounted' => 1]
6);
similar questions
queries leading to this page
laravel create or update