Added str to upper for vehicle number in post api of vehicle entry
Some checks are pending
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Waiting to run
Gemini PR Review / Gemini PR Review (pull_request) Waiting to run
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Waiting to run
Laravel Larastan / larastan (pull_request) Waiting to run
Laravel Pint / pint (pull_request) Waiting to run

This commit is contained in:
dhanabalan
2026-05-21 19:43:57 +05:30
parent dc028c91bb
commit b4ef782067

View File

@@ -194,7 +194,7 @@ class VehicleController extends Controller
'uuid' => $uuid
],
[
'vehicle_number' => $vehicleNo,
'vehicle_number' => strtoupper($vehicleNo),
'entry_time' => $entryTime,
'exit_time' => $exitTime ?? null,
'duration' => $duration ?: null,