From fe258198f4048ef429dfe816658e89bca94449b4 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Wed, 31 Jul 2024 21:19:02 +0200 Subject: [PATCH] Add daily invoice sending --- app/Console/Kernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 31727f59..6998351e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -33,6 +33,7 @@ class Kernel extends ConsoleKernel $schedule->command(DbMaintainAction::class)->daily(); $schedule->command(InitializeMembers::class)->dailyAt('03:00'); $schedule->command(PreventionRememberAction::class)->dailyAt('11:00'); + $schedule->command(InvoiceSendAction::class)->dailyAt('10:00'); } /**