@php // $customer = $quote->customer; $vehicle = $quote->vehicle; @endphp
Vehicle Information
{{--
Name
{{ $customer?->name ?: 'N/A' }}
Email
{{ $customer?->email ?: 'N/A' }}
Phone
{{ $customer?->phone ?: 'N/A' }}
City
{{ $customer?->city ?: 'N/A' }}
Address
{{ $customer?->address ?: 'N/A' }}
--}}
Model
{{ $vehicle?->model ?? 'N/A' }}
Make
{{ $vehicle?->make ?? 'N/A' }}
Year
{{ $vehicle?->year ?? 'N/A' }}
VRM
{{ $vehicle?->vrm ?: $quote->vrm ?: 'N/A' }}
Fuel Type
{{ $vehicle?->fuel_type ?? 'N/A' }}
Engine Size
{{ $vehicle?->engine_size ?? 'N/A' }}
Engine Code
{{ $vehicle?->engine_code ?? 'N/A' }}
Engine Number
{{ $vehicle?->engine_number ?? 'N/A' }}
VIN Number
{{ $vehicle?->vin ?? 'N/A' }}
Color
{{ $vehicle?->color ?? 'N/A' }}
Body Type
{{ $vehicle?->body_type ?? 'N/A' }}
Number of Doors
{{ $vehicle?->number_of_doors ?? 'N/A' }}
Seating Capacity
{{ $vehicle?->seat_capacity ?? 'N/A' }}
Wheel Plan
{{ $vehicle?->wheel_plan ?? 'N/A' }}
Aspiration
{{ $vehicle?->aspiration ?? 'N/A' }}
Maximum BHP
{{ $vehicle?->maximum_bhp ?? 'N/A' }}
Transmission
{{ $vehicle?->transmission ?? 'N/A' }}
CO2 Emissions
{{ $vehicle?->co2_emissions ? $vehicle->co2_emissions . ' g/km' : 'N/A' }}