Laravel PHP artisan makes a model with migration, controller and resources
1. Create a model command: This command creates the Product model placed in the app/models directory. 2. Create Controller Command: You can use the php artisan make: controller command to create a controller. This command will create a controller named ProductController, Which is placed in app/http/controllers directory. 3. Create a Resource Controller Command: PHP artisan make … Read more