run the invoice:cron daily

This commit is contained in:
David Callizaya 2021-10-30 11:39:52 -04:00
parent 6118483c4f
commit 7e3ee38dcd
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ class Kernel extends ConsoleKernel
protected function schedule(Schedule $schedule)
{
$schedule->command('booking:cron')->dailyAt('3:00');
$schedule->command('invoice:cron')->dailyAt('3:00');
}
/**