From 0fa1c5f34bf4bf93adc21bcfa425755f326a35cb Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 27 May 2026 08:11:59 +0530 Subject: [PATCH] Changed time of the invoice report --- app/Console/Commands/Scheduler.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/Scheduler.php b/app/Console/Commands/Scheduler.php index e579fee..483b877 100644 --- a/app/Console/Commands/Scheduler.php +++ b/app/Console/Commands/Scheduler.php @@ -104,7 +104,7 @@ class Scheduler extends Command } break; case 'Daily': - if (now()->format('H:i') == '17:55') { + if (now()->format('H:i') == '08:15') { \Artisan::call('send:invoice-report', [ 'schedule_type' => $rule->schedule_type, 'plant' => $rule->plant, @@ -142,7 +142,7 @@ class Scheduler extends Command } break; case 'Daily': - if (now()->format('H:i') == '17:55') { + if (now()->format('H:i') == '08:15') { \Artisan::call('send:invoice-report', [ 'schedule_type' => $rule->schedule_type, 'plant' => $rule->plant, @@ -180,7 +180,7 @@ class Scheduler extends Command } break; case 'Daily': - if (now()->format('H:i') == '17:55') { + if (now()->format('H:i') == '08:15') { \Artisan::call('send:invoice-report', [ 'schedule_type' => $rule->schedule_type, 'plant' => $rule->plant,