EQUIPMENT INSPECTION REPORT

Report #{{ $inspection->id }} | Generated: {{ now()->format('M d, Y H:i:s') }}

Worker Information

Full Name: {{ $inspection->user->full_name }}
Username: {{ $inspection->user->username }}
Employee ID: {{ $inspection->user->employee_id }}
Department: {{ $inspection->user->department->name }}

Equipment Information

Name: {{ $inspection->equipment->name }}
Tag ID: {{ $inspection->equipment->tag_id }}
Location: {{ $inspection->equipment->location }}
Type: {{ $inspection->equipment->getTypeLabel() }}
Department: {{ $inspection->equipment->department->name }}

Inspection Details

Checklist: {{ $inspection->checklist->title }}
Date/Time: {{ $inspection->inspection_date->format('M d, Y H:i:s') }}
Status: {{ strtoupper($inspection->overall_status) }}

Inspection Items

@foreach($inspection->items as $index => $item) @endforeach
# Item Result Description/Notes
{{ $index + 1 }} {{ $item->checklistItem->item_name }} {{ $item->getResultLabel() }} {{ $item->fail_description ?: '-' }}
@if($inspection->notes)

Additional Notes

{{ $inspection->notes }}

@endif @if($inspection->photos->isNotEmpty())

Attached Photos

@foreach($inspection->photos as $photo) {{ $photo->original_name }} @endforeach
@endif
Inspector Signature
Supervisor Signature