I have command SendEmails:send
, in the Kernel.
$schedule->command('SendEmails:send')->everyMinute();
But the scheduler doesn't work. However, if I run command...
php artisan SendEmails:send
All is OK. Lastly, if I run the command...
php artisan schedule:run
I get the message:
No scheduled commands are ready to run.
What did I do wrong?