diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 63d5e462..cc9f1ff3 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -75,6 +75,10 @@ class Kernel extends ConsoleKernel $schedule->command('lark:push-company-module') ->hourly() ->withoutOverlapping(); + // Push booking module to Lark + $schedule->command('lark:push-booking-module') + ->hourly() + ->withoutOverlapping(); } } //Commands Version 1: Before Laravel Vapor/AWS