I have setup a command to run every Saturday at midnight but it is not working I write this but not running
$schedule->command('weeklyRewardPoints')->weeklyOn(6, '00:00')->timezone('Asia/Dubai');
then I try this but again not working
$schedule->command('weeklyRewardPoints')->weeklyOn(6, '0:0')->timezone('Asia/Dubai');
Even I tried to run at any specific minute at midnight like this but still not working
$schedule->command('weeklyRewardPoints')->weeklyOn(6, '00:30')->timezone('Asia/Dubai');
It is working successfully any other hour and minutes but not at midnight hour and minutes
this is my cron job
* * * * 6 php /home/path-to-my-project/artisan schedule:run >> /dev/null 2>&1