@extends('emails.layouts.email') @section('title', 'Vehicle Inspection Report') @section('content')

Vehicle Inspection Summary

Dear {{ $inspection->customer->full_name }},

Please find below the inspection report for your vehicle:

Vehicle: {{ $inspection->vehicle?->vehicleModel?->vehicleMake?->name }} {{ $inspection->vehicle?->vehicleModel?->name }}

Chassis No: {{ $inspection->vehicle->chassis_no }}

Inspection Date: {{ $inspection->created_at->format('F j, Y') }}

Inspector: {{ $inspection->employee->full_name }}

@if ($inspection->overall_condition)
Overall Condition

{{ $inspection->overall_condition }}

@endif @if ($inspection->inspector_comments)
Inspector Comments

{{ $inspection->inspector_comments }}

@endif @if ($inspection->recommendations)
Recommendations

{{ $inspection->recommendations }}

@endif @if ($inspection->photos)
Inspection Photos

Please find attached photos from the inspection.

@endif @endsection