create new model in laravel command code example
Example 1: create model with controller laravel
php artisan make:controller CustomersController --model=Customer
Example 2: php artisan make model
php artisan make:model Flight
php artisan make:controller CustomersController --model=Customer
php artisan make:model Flight