My Vehicles

View information about your registered vehicles.

@if($vehicles->count() > 0)
@foreach($vehicles as $vehicle)
Active

{{ $vehicle->year }} {{ $vehicle->make }} {{ $vehicle->model }}

@if($vehicle->license_plate)
License Plate: {{ $vehicle->license_plate }}
@endif @if($vehicle->vin)
VIN: {{ Str::limit($vehicle->vin, 10) }}...
@endif @if($vehicle->color)
Color: {{ ucfirst($vehicle->color) }}
@endif @if($vehicle->mileage)
Mileage: {{ number_format($vehicle->mileage) }} miles
@endif
{{ $vehicle->job_cards_count }}
Service Records
{{ $vehicle->appointments_count }}
Appointments
@if($vehicle->notes)

{{ Str::limit($vehicle->notes, 100) }}

@endif
@endforeach
@else

No vehicles registered

Contact us to add your vehicles to your account.

@endif