I have a task which I need to execute for the first 10 days of every month
something like below:
$schedule->command('log:test')->cron('* * 1-10 * *');
seems cron()
is not getting executed... though everyMinute()
is working fine... How can I get this to work?