I'm using Composer to generate my PHP files and stuff. I think it makes programming much easier.
For example, to generate a Controller I do this:
php artisan controller:make NomeController
It works!
But typing:
php artisan make:model NomeModel
It does not work and displays this error:
There are no commands defined in the "make" namespace.
I searched, but found nothing. And I noticed that typing only php artisan
- which shows a list of existing commands - model does not really exist.
What to do?