From 15849fc543458be35943e9a8d7d454f7cc8210a3 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Wed, 9 Jul 2025 10:32:45 +0530 Subject: [PATCH] issue solve din production report send mail --- routes/console.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/routes/console.php b/routes/console.php index 6e32175..611af45 100644 --- a/routes/console.php +++ b/routes/console.php @@ -147,22 +147,22 @@ app()->booted(function () { ->get(); foreach ($productionRules as $rule) { - $command = $schedule->command("send:production-report --email={$rule->email}"); + $command = $schedule->command("send:production-report"); switch ($rule->schedule_type) { case 'Live': $command->everyMinute(); - Log::info("Scheduled Live production report for {$rule->email}"); + // Log::info("Scheduled Live production report for"); break; case 'Hourly': $command->hourly(); - Log::info("Scheduled Hourly production report for {$rule->email}"); + //Log::info("Scheduled Hourly production report for {$rule->email}"); break; case 'Daily': $command->dailyAt('07:59'); - Log::info("Scheduled Daily production report for {$rule->email}"); + // Log::info("Scheduled Daily production report for {$rule->email}"); break; } }