php artisan model code example

Example 1: create model in laravel command line

# Create a new Drink model.
php artisan make:model Drink

Example 2: how to create model in laravel

php artisan make:model Flight

Example 3: laravel make model

php artisan make:model Flight --migration

php artisan make:model Flight -m

Example 4: laravel make model

php artisan make:model Flight --factory
php artisan make:model Flight -f

php artisan make:model Flight --seed
php artisan make:model Flight -s

php artisan make:model Flight --controller
php artisan make:model Flight -c

php artisan make:model Flight -mfsc

Example 5: laravel update

$flight = App\Models\Flight::find(1);

$flight->name = 'New Flight Name';

$flight->save();

Example 6: laravel find query

return Destination::orderByDesc(
    Flight::select('arrived_at')
        ->whereColumn('destination_id', 'destinations.id')
        ->orderBy('arrived_at', 'desc')
        ->limit(1)
)->get();