Added boom opened in vehicle entry mail
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Gemini PR Review / Gemini PR Review (pull_request) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Has been cancelled
Laravel Larastan / larastan (pull_request) Has been cancelled
Laravel Pint / pint (pull_request) Has been cancelled

This commit is contained in:
dhanabalan
2026-05-22 17:21:37 +05:30
parent 10e493ca51
commit 33635fd9af
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,
];
}