2

i have create one command and set it to run on every month like

$schedule->command('send-reports') ->monthly();

Now my Question is when it's Run exactly ??

At start of month like 2019-02-01 00:00:00 OR At end of month 2019-01-31 11:59:59

vishal ribdiya
  • 1,013
  • 2
  • 12
  • 20

1 Answers1

3

If you look at the code here. Function return '0 0 1 * * *', which translates to 'at 00:00 on day-of-month 1'.

golangphp
  • 115
  • 7