Laravel:给定特定时间时,调度程序不工作

Laravel: Scheduler not working when specific time is given

正在尝试在 Larval 中安排命令:

$schedule->command('Cname')->everyFiveMinutes(); -- Works just fine

但是当我给出具体的日期和时间时 -

    $schedule->command('Cname')->weeklyOn(3,'9:10');
or 

    $schedule->command('Cname')->weekly()->thursdays()->at('09:10');

Its not working 

我做错了什么?有什么想法/建议吗?

我相信你可以只使用 cron 表达式 * * * * * *

$schedule->command('Command Name')->cron('10 9 * * 4');

每周四 09:10 前执行

说明

 * * * * *  command to execute
 ┬ ┬ ┬ ┬ ┬
 │ │ │ │ │
 │ │ │ │ │
 │ │ │ │ └───── day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
 │ │ │ └────────── month (1 - 12)
 │ │ └─────────────── day of month (1 - 31)
 │ └──────────────────── hour (0 - 23)
 └───────────────────────── min (0 - 59)