From 4fbb325d7d44a03f9743b1075dfb00d513bf23f9 Mon Sep 17 00:00:00 2001 From: AmirmahdiNourkazemi Date: Sat, 13 Dec 2025 17:27:53 +0330 Subject: [PATCH] fix: add UTC --- app/Console/Commands/SendDueReminders.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendDueReminders.php b/app/Console/Commands/SendDueReminders.php index b77c2f7..51dba5c 100644 --- a/app/Console/Commands/SendDueReminders.php +++ b/app/Console/Commands/SendDueReminders.php @@ -25,7 +25,7 @@ class SendDueReminders extends Command */ public function handle(): int { - $now = now(); + $now = now('UTC'); $currentTime = $now->toTimeString(); // HH:MM:SS $this->info("Current time: {$now}");