I installed the following command:
protected function schedule(Schedule $schedule)
{
$schedule->command('feeds:fetch')->everyFiveMinutes();
}
I set the cron job to run php artisan schedule:run
When I run this line on the dev terminal, it launches the OK task. In Prod, it returns "No scheduled commands are ready to run."
Any way to fix this problem?
Nacho source
share