Added boom opened in vehicle entry mail #640
@@ -61,6 +61,7 @@ class SendVehicleReport extends Command
|
|||||||
|
|
||||||
$vehicleEntries = VehicleEntry::select([
|
$vehicleEntries = VehicleEntry::select([
|
||||||
'vehicle_number',
|
'vehicle_number',
|
||||||
|
'boom_opened',
|
||||||
'entry_time',
|
'entry_time',
|
||||||
'exit_time',
|
'exit_time',
|
||||||
'duration',
|
'duration',
|
||||||
@@ -87,6 +88,7 @@ class SendVehicleReport extends Command
|
|||||||
'exitTime' => $vehicleEntry->exit_time,
|
'exitTime' => $vehicleEntry->exit_time,
|
||||||
'duration' => $vehicleEntry->duration,
|
'duration' => $vehicleEntry->duration,
|
||||||
'type' => $vehicleEntry->type,
|
'type' => $vehicleEntry->type,
|
||||||
|
'boom' => $vehicleEntry->boom_opened,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -65,6 +65,7 @@
|
|||||||
<th>No</th>
|
<th>No</th>
|
||||||
<th>Plant Name</th>
|
<th>Plant Name</th>
|
||||||
<th>Vehicle Number</th>
|
<th>Vehicle Number</th>
|
||||||
|
<th>Boom Opened</th>
|
||||||
<th>Entry Time</th>
|
<th>Entry Time</th>
|
||||||
<th>Exit Time</th>
|
<th>Exit Time</th>
|
||||||
<th>Duration</th>
|
<th>Duration</th>
|
||||||
@@ -77,6 +78,7 @@
|
|||||||
<td>{{ $loop->iteration }}</td>
|
<td>{{ $loop->iteration }}</td>
|
||||||
<td>{{ $row['plant'] }}</td>
|
<td>{{ $row['plant'] }}</td>
|
||||||
<td>{{ $row['vehicleNumber'] }}</td>
|
<td>{{ $row['vehicleNumber'] }}</td>
|
||||||
|
<td>{{ $row['boom'] }}</td>
|
||||||
<td>{{ $row['entryTime'] }}</td>
|
<td>{{ $row['entryTime'] }}</td>
|
||||||
<td>{{ $row['exitTime'] }}</td>
|
<td>{{ $row['exitTime'] }}</td>
|
||||||
<td>{{ $row['duration'] }}</td>
|
<td>{{ $row['duration'] }}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user