@extends('frontend.layouts.app') @push('styles') @endpush @section('content') {{-- Breadcrumb --}}
{{-- ── LEFT COLUMN ── --}}
{{-- Header --}}
{{ $investment->investment_category_label }} @if($investment->rera_approved) RERA Approved @endif @if($investment->is_verified) Due Diligence Done @endif

{{ $investment->title }}

{{ $investment->full_location }} @if($investment->address) · {{ $investment->address }} @endif
{{ $investment->formatted_price }} @if($investment->price_at_launch && $investment->price_at_launch < $investment->price) ₹{{ number_format($investment->price_at_launch / 100000, 1) }} L (launch) @endif
@if($investment->expected_appreciation) {{ $investment->expected_appreciation }} expected @endif @if($investment->possession_timeline) Possession: {{ $investment->possession_timeline }} @endif
{{-- Gallery --}} @if($investment->images->count()) @else @endif {{-- Investment Score Card --}} @if($investment->investment_score || $investment->location_score || $investment->growth_potential_score || $investment->rental_yield_score || $investment->liquidity_score)
@if($investment->investment_score)
{{ number_format($investment->investment_score, 1) }} / 10
@endif

Investment Score

Research-based scoring across 4 parameters

@php $scores = [ ['label' => 'Location Score', 'val' => $investment->location_score, 'icon' => 'M17.657 16.657L13.414 20.9a2 2 0 01-2.828 0l-4.243-4.243a8 8 0 1111.314 0z M15 11a3 3 0 11-6 0 3 3 0 016 0z'], ['label' => 'Growth Potential', 'val' => $investment->growth_potential_score, 'icon' => 'M13 7h8m0 0v8m0-8l-8 8-4-4-6 6'], ['label' => 'Rental Yield', 'val' => $investment->rental_yield_score, 'icon' => 'M17 9V7a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2m2 4h10a2 2 0 002-2v-6a2 2 0 00-2-2H9a2 2 0 00-2 2v6a2 2 0 002 2zm7-5a2 2 0 11-4 0 2 2 0 014 0z'], ['label' => 'Liquidity', 'val' => $investment->liquidity_score, 'icon' => 'M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4'], ]; @endphp @foreach($scores as $s) @if($s['val'])
{{ $s['label'] }} {{ number_format($s['val'], 1) }}/10
@endif @endforeach
@endif {{-- Why We Recommend --}} @if($investment->why_we_recommend)

Why We Recommend This Project

{!! nl2br(e($investment->why_we_recommend)) !!}
@endif {{-- Overview / Description --}} @if($investment->description)

Project Overview

{!! nl2br(e($investment->description)) !!}
@endif {{-- Location Analysis --}} @if($investment->nearby_metro || $investment->nearby_airport || $investment->nearby_highway || $investment->nearby_schools || $investment->nearby_hospitals || ($investment->latitude && $investment->longitude))

Location Analysis

@php $nearby = [ ['label' => 'Metro', 'val' => $investment->nearby_metro, 'icon' => 'M13 10V3L4 14h7v7l9-11h-7z', 'color' => '#2563eb'], ['label' => 'Airport', 'val' => $investment->nearby_airport, 'icon' => 'M12 19l9 2-9-18-9 18 9-2zm0 0v-8', 'color' => '#7c3aed'], ['label' => 'Highway', 'val' => $investment->nearby_highway, 'icon' => 'M9 20l-5.447-2.724A1 1 0 013 16.382V5.618a1 1 0 011.447-.894L9 7m0 13l6-3m-6 3V7m6 10l4.553 2.276A1 1 0 0021 18.382V7.618a1 1 0 00-.553-.894L15 4m0 13V4m0 0L9 7', 'color' => '#059669'], ['label' => 'Schools', 'val' => $investment->nearby_schools, 'icon' => 'M12 14l9-5-9-5-9 5 9 5zm0 0l6.16-3.422a12.083 12.083 0 01.665 6.479A11.952 11.952 0 0012 20.055a11.952 11.952 0 00-6.824-2.998 12.078 12.078 0 01.665-6.479L12 14z', 'color' => '#d97706'], ['label' => 'Hospitals', 'val' => $investment->nearby_hospitals,'icon' => 'M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z', 'color' => '#dc2626'], ]; $hasNearby = collect($nearby)->filter(fn($n) => $n['val'])->count() > 0; @endphp @if($hasNearby)
@foreach($nearby as $n) @if($n['val']) {{ $n['label'] }}: {{ $n['val'] }} @endif @endforeach
@endif @if($investment->latitude && $investment->longitude)
@endif
@endif {{-- Developer Analysis --}} @if($investment->developer_name || $investment->developer_track_record)

Developer Analysis

@if($investment->developer_name)

{{ $investment->developer_name }}

Project Developer

@endif @if($investment->developer_track_record)
{!! nl2br(e($investment->developer_track_record)) !!}
@endif @if($investment->rera_number)
RERA No: {{ $investment->rera_number }}
@endif
@endif {{-- Downloads --}} @if($investment->brochure_path || $investment->floor_plan_path || $investment->price_sheet_path)

Downloads

@if($investment->brochure_path)

Project Brochure

PDF Download

@endif @if($investment->floor_plan_path)

Floor Plans

PDF Download

@endif @if($investment->price_sheet_path)

Price Sheet

PDF Download

@endif
@endif {{-- Related Investments --}} @if($related->count())

Similar Opportunities

@endif
{{-- /LEFT --}} {{-- ── RIGHT: Sticky Inquiry Form ── --}}

Interested in this project?

Book a free consultation — our advisor will walk you through everything.

@csrf

Your information is kept strictly confidential

@endsection @push('scripts') @endpush