@php
$customer = $estimate->customer ?? $estimate->jobCard?->customer;
@endphp
@if($customer)
Name:
{{ $customer->name }}
Email:
{{ $customer->email }}
Phone:
{{ $customer->phone }}
@else
No customer information available
@endif
@php
$vehicle = $estimate->vehicle ?? $estimate->jobCard?->vehicle;
@endphp
@if($vehicle)
Vehicle:
{{ $vehicle->year }} {{ $vehicle->make }} {{ $vehicle->model }}
License:
{{ $vehicle->license_plate }}
@if($vehicle->vin)
VIN:
{{ $vehicle->vin }}
@endif
@else
No vehicle specified
@endif