From bb8000d177246066e3b85463ffa12339c01e2e2a Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 21 May 2026 22:33:06 +0530 Subject: [PATCH] Converted vehicle number to upper case for mail report --- app/Console/Commands/SendVehicleReport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendVehicleReport.php b/app/Console/Commands/SendVehicleReport.php index f255d42..3b73e16 100644 --- a/app/Console/Commands/SendVehicleReport.php +++ b/app/Console/Commands/SendVehicleReport.php @@ -82,7 +82,7 @@ class SendVehicleReport extends Command $tableData[] = [ 'no' => $no++, 'plant' => $plant->name, - 'vehicleNumber' => $vehicleEntry->vehicle_number, + 'vehicleNumber' => strtoupper($vehicleEntry->vehicle_number), 'entryTime' => $vehicleEntry->entry_time, 'exitTime' => $vehicleEntry->exit_time, 'duration' => $vehicleEntry->duration,