Survey Plan

List of survey plan documents attached to indexed properties. Search by property number, owner, or state to filter the list. Survey plans are uploaded in Index Property on each property’s detail page.

Search by property

Clear

Survey plans ({{ is_array($surveyPlanDocuments) ? count($surveyPlanDocuments) : $surveyPlanDocuments->count() }})

@php $surveys = $surveyPlanDocuments ?? collect(); @endphp @if($surveys->isEmpty())

No survey plans found. Upload survey plan documents in Index Property (open a property and upload a document with type “Survey plan”).

@else
@foreach($surveys as $doc) @endforeach
Property # Owner File name Uploaded Actions
@if($doc->property) {{ $doc->property->property_number }} @else — @endif {{ $doc->property ? Str::limit($doc->property->owner, 30) : '—' }} {{ $doc->file_name ?: 'Survey plan' }} {{ $doc->uploaded_at ? $doc->uploaded_at->format('d M Y') : '—' }} @if($doc->property) Download View property @endif
@endif