๐ Application Summary
Account
{{ $user->name }}
{{ $user->email }} ยท {{ $user->phone }}
Property
{{ $property->name }}
{{ ucfirst(str_replace('_', ' ', $property->type)) }} ยท
{{ $property->city }}, {{ $property->country }}
@if($property->phone)
๐ {{ $property->phone }}
@endif
Checklist
โ
Account details completed
โ
Property details completed
@foreach($documentTypes as $docType)
@php $uploaded = $uploadedDocs[$docType->slug] ?? null; @endphp
{{ $uploaded ? 'โ' : ($docType->is_required ? '!' : 'โ') }}
{{ $docType->name }} {{ !$uploaded && !$docType->is_required ? '(optional)' : '' }}
@endforeach
{{ $photos->count() > 0 ? 'โ' : '!' }}
{{ $photos->count() }} photo(s) uploaded