Inspection
Type
{{ $inspection->type }}
Status
{{ $inspection->status }}
Scheduled On
{{ $inspection->scheduled_on ?? '—' }}
Completed On
{{ $inspection->completed_on ?? '—' }}
Site
{{ $inspection->site?->name ?? '—' }}
Crew
{{ $inspection->crew?->name ?? '—' }}
Inspector
{{ $inspection->inspector?->name ?? '—' }}
Summary
{{ $inspection->summary ?? '—' }}
Checklists
@if ($inspection->checklistTemplates->isNotEmpty())
@foreach ($inspection->checklistTemplates as $template)
@php
$checklistItems = $inspection->data['checklists'][$template->id]
?? ($template->items ?? []);
@endphp
@endforeach
@else
—
@endif
Additional People
@if (! empty($inspection->tags))
@foreach ($inspection->tags as $tag)
{{ $tag }}
@endforeach
@else
—
@endif
@include('partials.attachments', [
'attachments' => $inspection->attachments,
'deletePermission' => 'inspections.update',
])
Back