我有一个laravel 5 app。我希望在一周的两天内每天两次运行一个laravel命令。我的尝试如下:
$schedule->command('supervisor:reminder')->weekly()->mondays()->thursdays()->twiceDaily(6, 13);
我没有收到提醒电子邮件。可能有什么不对?
答案 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');