make model laravel code example
Example 1: create model in laravel command line
php artisan make:model Drink
Example 2: how to create model in laravel
php artisan make:model Flight
Example 3: laravel create model
php artisan make:model Flight
php artisan make:model Flight
php artisan make:model Flight -m
Example 4: laravel create model and migration
php artisan make:model Flight
php artisan make:model Flight -m
Example 5: laravel firstorcreate
$flight = App\Flight::firstOrCreate(['name' => 'Flight 10']);
$flight = App\Flight::firstOrCreate(
['name' => 'Flight 10'],
['delayed' => 1, 'arrival_time' => '11:30']
);
$flight = App\Flight::firstOrNew(['name' => 'Flight 10']);
$flight = App\Flight::firstOrNew(
['name' => 'Flight 10'],
['delayed' => 1, 'arrival_time' => '11:30']
);
Example 6: laravel create or update
$flight = App\Models\Flight::updateOrCreate(
['departure' => 'Oakland', 'destination' => 'San Diego'],
['price' => 99, 'discounted' => 1]
);