@include('partials.styles')
@include('partials.nav')
Inspections / Edit
Edit Inspection
@can('inspections.update')
@csrf @method('put')
Type
Status
status ?? '') === 'open')>Open
status ?? '') === 'closed')>Closed
Scheduled On
Completed On
Site
—
@foreach ($sites as $site)
site_id === $site->id)>{{ $site->name }}
@endforeach
Crew
—
@foreach ($crews as $crew)
crew_id === $crew->id)>{{ $crew->name }}
@endforeach
Inspector
—
@foreach ($users as $user)
inspector_id === $user->id)>{{ $user->name }}
@endforeach
Summary
{{ $inspection->summary }}
Checklists
@forelse ($checklistTemplates as $template)
id, $selectedChecklistTemplateIds ?? [], true))>
{{ $template->name }}
@empty
No checklists available.
@endforelse
Additional People
@include('partials.tag-input', ['tagSuggestions' => $tagSuggestions ?? [], 'tagInitial' => $inspection->tags ?? []])
Attachments
Save
Cancel
@else
You do not have permission to edit this record.
Back
@endcan