Investment Preferences
Investment Strategies
@forelse($investor->deals_of_interest ?? [] as $deal)
{{ $deal }}
@empty
No strategies selected
@endforelse
Property Types
@forelse($investor->property_types ?? [] as $type)
{{ $type }}
@empty
No property types selected
@endforelse
Internal Notes
{!! nl2br(e($investor->notes ?? 'No additional notes provided.')) !!}
Matching Properties
@if($matchedProperties->count() > 0)
@endif
{{ $matchedProperties->count() }} Matches Found
@if($matchedProperties->count() > 0)
@foreach($matchedProperties as $property)
£{{ number_format($property->price) }}
{{ $property->headline }}
{{ Str::limit($property->location, 30) }}
{{ $property->investment_type }}
@endforeach
@else
No properties currently match this investor's criteria.
@endif