From 17e2f0be35d679cfbc2d8c6f9deac16774b55e1a Mon Sep 17 00:00:00 2001 From: Oskar-Mikael Date: Sun, 31 Aug 2025 13:58:40 +0200 Subject: [PATCH] Set schedule timezone --- routes/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/console.php b/routes/console.php index 742b06a..4586c98 100644 --- a/routes/console.php +++ b/routes/console.php @@ -9,5 +9,5 @@ Artisan::command('inspire', function () { $this->comment(Inspiring::quote()); })->purpose('Display an inspiring quote'); -Schedule::call(fn() => app(BotService::class)->run())->everyMinute(); +Schedule::call(fn() => app(BotService::class)->run())->everyMinute()->timezone('Europe/Copenhagen');