Vehicle Tuning Lookup Feature

Vehicle Tuning Lookup Feature for TuningDesk Platform
The Vehicle Lookup Feature allows users to search for detailed vehicle specifications using the VIN (Vehicle Identification Number) or Model Name in the ECU tuning file database. This feature is particularly useful for users who need quick access to vehicle details for tuning or modification purposes in the automotive tuning file platform.
1. Admin: Importing Vehicle Data
To enable the Vehicle Lookup Feature, the Admin must first import vehicle data from a spreadsheet.
Import Process
- Prepare the Data File
- The file should contain vehicle details such as Make, Model, Year, Engine, ECU, VIN, Horsepower, and Gearbox.
- The data should be structured properly in columns for accurate import.
- Divide the Data into Smaller Files
- Each file must contain only 1,000 records for efficient processing.
- If the dataset is larger, split it into multiple files.
- Upload the Data
- The admin needs to navigate to the vehicle lookup import page:
- [client_domain]/import-vehicle-lookup
- Select the prepared spreadsheet file.
- Click Upload to process the file.
Once uploaded, the system will validate and store the vehicle records, making them available for search.
Vehicle Lookup Table Fields
- id – Unique identifier for the record
- make – Manufacturer of the vehicle (e.g., BMW, Audi)
- model – Specific model of the vehicle (e.g., A3, 320d)
- generation_from – Start year of the model generation
- generation_to – End year of the model generation
- engine – Engine specification (e.g., 2.0 TDI)
- original_bhp – Original brake horsepower before remapping
- remapped_bhp – Brake horsepower after remapping
- hp_gains – Increase in horsepower due to remapping
- original_torque – Torque value before remapping
- remapped_torque – Torque value after remapping
- torque_gains – Increase in torque due to remapping
- created_at – Timestamp when the record was created
- updated_at – Timestamp when the record was last updated
Demo Vehicle Lookup File
You can download a sample vehicle lookup data file to understand the required format:
Download Sample Data2. Enabling the Vehicle Lookup Feature (Admin Only)
If the admin wants to enable the Vehicle Lookup Feature, they can do so by modifying the login page.
Steps to Enable Vehicle Lookup
- Open the file:
resources/views/auth/login.blade.php
- Locate the appropriate section in the file where navigation links are defined.
- Add the Vehicle Lookup link to allow users to access the feature.
<a href="[client_domain]/vehicle-lookup">Vehicle Lookup</a>
- You can also enable this feature through the admin dashboard by navigating to Settings -> Features and toggling the Vehicle Lookup option.
After saving the changes, the Vehicle Lookup Feature will be accessible to userss through the login page or navigation menu.