Question:
php artisan make:console SendEmails was created successfully, why can’t it be found in the list? ? ? ?
Solution
Need to register in app/console/kernel.php
protected $commands = [ \App\Console\Commands\SendEmails::class, ];
Related articles: