@extends('layouts.admin') @section('title', $inspection->title) @section('content')

{{ $inspection->title }}

{{ $inspection->site->name }} • {{ $inspection->site->client->name }}

{{ ucfirst(str_replace('_', ' ', $inspection->status)) }}
@if($inspection->description)

{{ $inspection->description }}

@endif

Photos

@foreach($inspection->photos as $photo) {{ $photo->caption }} @endforeach

Notes

@foreach($inspection->notes as $note)

{{ $note->note }}

{{ $note->user->name }} • {{ $note->created_at->format('M d, Y H:i') }}

@endforeach
@endsection