如何让laravel命令在一周内运行两天,每天运行两次?

时间:2016-08-04 08:52:45

标签: laravel-5.1

我有一个laravel 5 app。我希望在一周的两天内每天两次运行一个laravel命令。我的尝试如下:

$schedule->command('supervisor:reminder')->weekly()->mondays()->thursdays()->twiceDaily(6, 13);

我没有收到提醒电子邮件。可能有什么不对?

1 个答案:

答案 0 :(得分:0)

Using the command below,my application is sending notifications to managers on Mondays and Thursdays at 7AM and 2PM.

$schedule->command('manager:reminder')->cron('0 6,13 * * 1,4');