Trying to schedule command in Larval:
$schedule->command('Cname')->everyFiveMinutes(); -- Works just fine
But when I give specific day and time like -
$schedule->command('Cname')->weeklyOn(3,'9:10');
or
$schedule->command('Cname')->weekly()->thursdays()->at('09:10');
Its not working
what am I doing wrong? any thoughts/ suggestions?