php artisan make:model code example
Example 1: create model in laravel command line
# Create a new Drink model.
php artisan make:model Drink
Example 2: laravel make model with migration and controller
php artisan make:model Todo -mcr
Example 3: laravel force delete
Product::find($id)->forceDelete();
Example 4: create model with controller laravel
php artisan make:controller CustomersController --model=Customer
Example 5: create model controller migration factory laravel in one command
# to make only Model Class
php artisan make:model Customer
# to make resource controller
php artisan make:controller CustomersController --resource
# make controller for already existing Model Class (binded to model)
php artisan make:controller CustomersController --model=Customer
# to make model, migration and controller and factory all in one command
php artisan make:model Modelname -crmf
Example 6: make model controller in single command
# to make only Model Class
php artisan make:model Customer
# to make resource controller
php artisan make:controller CustomersController --resource
# make controller for already existing Model Class (binded to model)
php artisan make:controller CustomersController --model=Customer
# to make model, migration and controller all in one command
php artisan make:model User -mcr
# here m for migration, c for controller, r for resource methods in controller