I run: php artisan schedule:run I get: INFO No scheduled commands are ready to run.
My routes code is:
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Foundation\Scheduling\Schedule;
return function (Schedule $schedule) {
$schedule->command('command:email:daily')->everyMinute();
};
How to get cron working? I want to run cron every minute?
Regards