@extends('layouts.app') @section('content')
Back to Properties
{{ $property->marketingPurpose->name ?? 'For Sale' }} @if($property->discount_available) Discount Available @endif

{{ $property->headline }}

@if($property->door_number) {{ $property->door_number }}, @endif {{ $property->location }}

@if($property->thumbnail) {{ $property->headline }} @else No Image @endif

Property Description

{!! $property->full_description !!}
@if($property->features->count() > 0)

Features & Amenities

@foreach($property->features as $feature)
{{ $feature->name }}
@endforeach
@endif @if($property->gallery_images)

Photo Gallery

@foreach($property->gallery_images as $image) @endforeach
@endif @if($property->video_url)

Video Tour

@if(Str::contains($property->video_url, ['youtube.com', 'youtu.be', 'vimeo.com'])) @else @endif
@endif

Investment Details

  • Investment Strategy {{ ucfirst(str_replace('_', ' ', $property->investment_type)) }}
  • @if($property->current_value)
  • Current Value £{{ number_format($property->current_value, 2) }}
  • @endif @if($property->purchase_date)
  • Purchase Date {{ \Carbon\Carbon::parse($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 @if($property->yearly_rent)
  • Est. Yearly Rent £{{ number_format($property->yearly_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)
  • Target Sale Date {{ \Carbon\Carbon::parse($property->sale_date)->format('d M Y') }}
  • @endif @endif @if($property->assignable_contract)
  • Assignable Contract {{ ucfirst($property->assignable_contract) }}
  • @endif
  • Tenure {{ ucfirst($property->tenure_type) }}
  • @if($property->tenure_type == 'leasehold') @if($property->share_of_freehold)
  • Share of Freehold {{ ucfirst($property->share_of_freehold) }}
  • @endif @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->is_cash_buy)
  • Cash Buy Required Yes
  • @endif @if($property->exchange_deadline)
  • Exchange Deadline @php try { echo \Carbon\Carbon::parse($property->exchange_deadline)->format('d M Y'); } catch (\Exception $e) { echo $property->exchange_deadline; } @endphp
  • @endif @if($property->completion_deadline)
  • Completion Deadline @php try { echo \Carbon\Carbon::parse($property->completion_deadline)->format('d M Y'); } catch (\Exception $e) { echo $property->completion_deadline; } @endphp
  • @endif
@if($property->market_value_avg)

Market Value Analysis

Market Value (Min) £{{ number_format($property->market_value_min, 2) }}
Average Market Value £{{ number_format($property->market_value_avg, 2) }}
Market Value (Max) £{{ number_format($property->market_value_max, 2) }}
@php $saving = (float) $property->market_value_avg - (float) $property->price; $savingPercentage = $property->market_value_avg > 0 ? ($saving / (float) $property->market_value_avg) * 100 : 0; @endphp @if($saving > 0)
Instant Equity / Saving
£{{ number_format($saving, 2) }} ({{ round($savingPercentage, 1) }}%)
@endif
@endif @if($property->financing_type == 'mortgage' || $property->loan_amount)
Financing & Mortgage Information
  • Financing Type {{ ucfirst($property->financing_type) }}
  • @if($property->lender_name)
  • Lender {{ $property->lender_name }}
  • @endif
    @if($property->loan_amount)
  • Loan Amount £{{ number_format($property->loan_amount, 2) }}
  • @endif @if($property->interest_rate)
  • Interest Rate {{ $property->interest_rate }}%
  • @endif @if($property->monthly_payment)
  • Monthly Payment £{{ number_format($property->monthly_payment, 2) }}
  • @endif
@endif
@if($property->costs->count() > 0)

Associated Costs

    @foreach($property->costs as $cost)
  • {{ $cost->name }} £{{ number_format($cost->amount, 2) }}
  • @endforeach
  • Total Additional Costs £{{ number_format($property->costs->sum('amount'), 2) }}
@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' }}

£{{ number_format($property->portal_sale_price ?? $property->price, 2) }}

Inclusive of platform fee

  • Type {{ $property->propertyType->name ?? 'N/A' }}
  • Category {{ $property->unitType->name ?? 'N/A' }}
  • Area {{ $property->area_sq_ft }} sq ft
  • Bedrooms {{ $property->bedrooms }}
  • Bathrooms {{ $property->bathrooms }}
@csrf
Investor Benefits
  • Access Off market Deals
  • Up to 35% Equity / BMV
  • Distress Sales opportunities
  • Access to UK wide deals
  • Cash Buyer verification
@csrf
@if(auth()->check()) Download Brochure @endif
@endsection