Solved.
I didn't have a colon between schedule and run on the command line for my cron job entry.
Wrong command line:
* * * * * php /home/www/site/artisan schedule run >> /dev/null 2>&1
Correct command line:
* * * * * php /home/www/site/artisan schedule:run >> /dev/null 2>&1
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community