diff --git a/bootstrap/app.php b/bootstrap/app.php index 1f9e7dc5..09e710b1 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -112,22 +112,22 @@ return Application::configure(basePath: dirname(__DIR__)) ->withoutOverlapping(); // Push company module to Lark - $schedule->command('lark:push-company-module') - ->hourly() - ->withoutOverlapping(); + // $schedule->command('lark:push-company-module') + // ->hourly() + // ->withoutOverlapping(); // Push booking module to Lark - $schedule->command('lark:push-booking-module') - ->hourly() - ->withoutOverlapping(); + // $schedule->command('lark:push-booking-module') + // ->hourly() + // ->withoutOverlapping(); // // Push booking module to Lark // $schedule->command('lark:push-booking-transactions-module') // ->everyTenMinutes(); // $schedule->command('lark:push-booking-2025-transactions-module') // ->everyTenMinutes(); - // $schedule->command('lark:push-booking-september-2025-transactions-module') - // ->everyTenMinutes(); + $schedule->command('lark:push-booking-september-2025-transactions-module') + ->everyTenMinutes(); } } // Commands Version 1: Before Laravel Vapor/AWS