I made a new team using
php artisan make:console CrawlData
Then I changed two variables:
protected $signature = 'make:crawl'; protected $description = 'My crawling command';
The problem is that on startup:
php artisan make:crawl
It outputs:
[Symfony\Component\Console\Exception\CommandNotFoundException] Command "make:crawl" is not defined.
source share