Create Controller and Model in one Artisan Command

Tutorial last revisioned on August 11, 2022 with Laravel 9
Laravel is full of little tricks, and quick ways to generate code with Artisan. One of the recent ones I've found is when you're creating a CRUD record and need to create Model + Controller. You don't need two separate commands for that. How I was doing it until now:
php artisan make:model Customer
php artisan make:controller CustomersController --resource
Apparently, there's a quicker way:
php artisan make:controller CustomersController --model=Customer
And that's it. Laravel will actually ask you if you want to generate the model: laravel controller model artisan But that's not everything! You can create more. All available options you can check by writing
php artisan make:controller --help
That's it, quick tip to perform quick operation!

No comments or questions yet...

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 58 courses (1056 lessons, total 44 h 09 min)
  • 78 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord

Recent Premium Tutorials