From e0cfeca54b345c8b47693b56289e9bd105ecfadd Mon Sep 17 00:00:00 2001 From: Edmond Lang Date: Sun, 28 Sep 2025 22:35:53 +0800 Subject: [PATCH] Push booking module to lark --- app/Console/Kernel.php | 4 ++++ 1 file changed, 4 insertions(+) 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