{{ $property->marketingPurpose->name ?? 'For Sale' }}
@if($property->discount_available)
Discount Available
@endif
{{ $property->headline }}
{{ $property->location }}
@if($thumbnailBase64)

@endif
|
Property Details
@if($property->propertyType)
| Type |
{{ $property->propertyType->name }} |
@endif
@if($property->unitType)
| Category |
{{ $property->unitType->name }} |
@endif
@if($property->area_sq_ft)
| Area |
{{ $property->area_sq_ft }} sq ft |
@endif
@if($property->bedrooms)
| Bedrooms |
{{ $property->bedrooms }} |
@endif
@if($property->bathrooms)
| Bathrooms |
{{ $property->bathrooms }} |
@endif
@if($property->price)
| Price |
£{{ number_format($property->price, 2) }} |
@endif
@if($property->latitude && $property->longitude)
| Coordinates |
{{ $property->latitude }}, {{ $property->longitude }} |
@endif
|
Investment Stats
@if($property->investment_type)
| Strategy |
{{ ucfirst(str_replace('_', ' ', $property->investment_type)) }} |
@endif
@if($property->current_value)
| Current Value |
£{{ number_format($property->current_value, 2) }} |
@endif
@if($property->purchase_date)
| Purchase Date |
{{ $property->purchase_date->format('d M Y') }} |
@endif
@if($property->investment_type == 'rental')
@if($property->monthly_rent)
| Est. Monthly Rent |
£{{ number_format($property->monthly_rent, 2) }} |
@endif
| Tenanted |
{{ $property->is_currently_rented ? 'Yes' : 'No' }} |
@elseif($property->investment_type == 'buy_to_sell')
@if($property->sale_price)
| Target Sale Price |
£{{ number_format($property->sale_price, 2) }} |
@endif
@if($property->sale_date)
| Sale Date |
{{ $property->sale_date->format('d M Y') }} |
@endif
@endif
@if($property->tenure_type)
| Tenure |
{{ ucfirst($property->tenure_type) }} |
@endif
|
@if($property->financing_type)
Financial Details
| Financing Type |
{{ ucfirst($property->financing_type) }} |
@if($property->loan_amount)
| Loan Amount |
£{{ number_format($property->loan_amount, 2) }} |
@endif
@if($property->interest_rate)
| Interest Rate |
{{ number_format($property->interest_rate, 2) }}% |
@endif
@if($property->lender_name)
| Lender |
{{ $property->lender_name }} |
@endif
@if($property->monthly_payment)
| Monthly Payment |
£{{ number_format($property->monthly_payment, 2) }} |
@endif
@endif
Description
{!! $property->full_description !!}
@if($mapBase64)
Location Map
{{ $property->location }}
@elseif($property->latitude && $property->longitude)
Location
Coordinates: {{ $property->latitude }}, {{ $property->longitude }}
Address: {{ $property->location }}
@endif
@if($property->tenure_type == 'leasehold')
Lease Details
@if($property->lease_years_remaining)
| Lease Remaining |
{{ $property->lease_years_remaining }} Years |
@endif
@if($property->service_charge)
| Service Charge |
£{{ number_format($property->service_charge, 2) }} |
@endif
@if($property->ground_rent)
| Ground Rent |
£{{ number_format($property->ground_rent, 2) }} |
@endif
@endif
@if($property->costs->count() > 0)
Associated Costs
@foreach($property->costs as $cost)
| {{ $cost->name }} |
£{{ number_format($cost->amount, 2) }} |
@endforeach
@endif
@if($property->tenants->count() > 0)
Tenant Information
@foreach($property->tenants as $tenant)
| {{ $tenant->name }} @if($tenant->is_primary) (Primary) @endif |
@if($tenant->phone) {{ $tenant->phone }} @endif
@if($tenant->email) | {{ $tenant->email }} @endif
|
@endforeach
@endif
Compliance
|
Gas Safety
Issue:
{{ $property->gas_safety_issue_date ? $property->gas_safety_issue_date->format('d M Y') : 'N/A' }}
Expiry:
{{ $property->gas_safety_expiry_date ? $property->gas_safety_expiry_date->format('d M Y') : 'N/A' }}
|
Electrical Safety (EICR)
Issue:
{{ $property->electrical_issue_date ? $property->electrical_issue_date->format('d M Y') : 'N/A' }}
Expiry:
{{ $property->electrical_expiry_date ? $property->electrical_expiry_date->format('d M Y') : 'N/A' }}
|
@if($property->gallery_images)
Photo Gallery
@foreach(array_chunk($galleryBase64, 2) as $row)
@foreach($row as $imageBase64)
|
@endforeach
@if(count($row) < 2)
|
@endif
@endforeach
@endif
@if(!isset($type) || $type !== 'whitelabel')
@endif