Merge pull request 'Added boom opened in vehicle entry mail' (#640) from ranjith-dev into master
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

Reviewed-on: #640
This commit was merged in pull request #640.
This commit is contained in:
2026-05-22 11:51:58 +00:00
2 changed files with 4 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ class SendVehicleReport extends Command
$vehicleEntries = VehicleEntry::select([
'vehicle_number',
'boom_opened',
'entry_time',
'exit_time',
'duration',
@@ -87,6 +88,7 @@ class SendVehicleReport extends Command
'exitTime' => $vehicleEntry->exit_time,
'duration' => $vehicleEntry->duration,
'type' => $vehicleEntry->type,
'boom' => $vehicleEntry->boom_opened,
];
}

View File

@@ -65,6 +65,7 @@
<th>No</th>
<th>Plant Name</th>
<th>Vehicle Number</th>
<th>Boom Opened</th>
<th>Entry Time</th>
<th>Exit Time</th>
<th>Duration</th>
@@ -77,6 +78,7 @@
<td>{{ $loop->iteration }}</td>
<td>{{ $row['plant'] }}</td>
<td>{{ $row['vehicleNumber'] }}</td>
<td>{{ $row['boom'] }}</td>
<td>{{ $row['entryTime'] }}</td>
<td>{{ $row['exitTime'] }}</td>
<td>{{ $row['duration'] }}</td>