LandFeasibility.in
Report #{{ str_pad($report->id, 5, '0', STR_PAD_LEFT) }}  |  Generated {{ now()->format('d M Y, H:i') }} @if($report->zone)  |  Zone: {{ $report->zone->name }} @endif
{{ $report->feasibility_score ?? '—' }}
{{ $report->feasibility_score >= 70 ? 'Feasible' : ($report->feasibility_score >= 40 ? 'Marginal' : 'Challenging') }}
Location & Zone
Address{{ $report->address ?? '—' }}
Coordinates{{ $report->latitude }}, {{ $report->longitude }}
State{{ $report->state?->name ?? '—' }}
City{{ $report->city?->name ?? '—' }}
Zone{{ $report->zone?->name ?? '—' }}
Road Width{{ $report->road_width_m ? $report->road_width_m.' m' : '—' }}
Regulation{{ $report->zoneRule?->rule_source ?? '—' }}
Status{{ ucfirst($report->status) }}
Score
{{ $report->feasibility_score ?? '—' }}/100
Calculation Results
Plot Area
{{ $report->plot_area_sqm ? number_format($report->plot_area_sqm) : '—' }}
sq.m
Max Buildable Area
{{ $report->max_buildable_area_sqm ? number_format($report->max_buildable_area_sqm) : '—' }}
sq.m
Ground Coverage
{{ $report->ground_coverage_sqm ? number_format($report->ground_coverage_sqm) : '—' }}
sq.m
Max Floors
{{ $report->max_floors ?? '—' }}
floors
FAR / FSI
{{ $report->zoneRule?->max_far ?? '—' }}
ratio
Max Height
{{ $report->zoneRule?->max_height_m ?? '—' }}
metres
@if($report->setback_summary)
Required Setbacks
@foreach($report->setback_summary as $dir => $val) @endforeach
{{ ucfirst($dir) }} {{ $val }} m
@endif
@if($report->permitted_uses && count($report->permitted_uses))
Permitted Uses
@foreach($report->permitted_uses as $use) {{ $use }} @endforeach @endif
@if($report->restriction_flags && count(array_filter($report->restriction_flags ?? [])))
Restriction Flags
@foreach($report->restriction_flags ?? [] as $flag => $active) @if($active)
⚠ {{ str_replace('_', ' ', ucfirst($flag)) }}
@endif @endforeach @endif @if($report->zoneRule)
Applied Zone Rule
@if($report->zoneRule->special_conditions) @endif
Rule Source{{ $report->zoneRule->rule_source }}
Road Width Band{{ $report->zoneRule->road_width_label }}
Ground Coverage %{{ $report->zoneRule->max_ground_coverage ? ($report->zoneRule->max_ground_coverage * 100).'%' : '—' }}
Parking Ratio{{ $report->zoneRule->parking_ratio_ecs ?? '—' }} ECS/sqm
Special Conditions{{ $report->zoneRule->special_conditions }}
@endif @php $ce = $report->cost_estimates ?? []; @endphp @if(!empty($ce))
Cost & ROI Estimates
Construction Cost
₹{{ number_format($ce['construction_cost_min_inr'] ?? 0) }} ₹{{ number_format($ce['construction_cost_max_inr'] ?? 0) }}
indicative range
Gross Dev. Value
₹{{ number_format($ce['gross_development_value_inr'] ?? 0) }}
market value at completion
Est. Profit
₹{{ number_format($ce['estimated_profit_inr'] ?? 0) }}
GDV minus max construction cost
ROI
{{ $ce['roi_pct'] ?? '—' }}%
return on investment
Monthly Rent Est.
₹{{ number_format($ce['monthly_rent_estimate_inr'] ?? 0) }}
indicative rental income
Break-even
{{ $ce['breakeven_years'] ?? '—' }}
years (from rental)
⚠ Cost & ROI figures are indicative estimates based on state-level benchmarks. Actual values may vary significantly. Project type: {{ ucfirst($report->project_type ?? 'residential') }}. @if(!empty($ce['note'])) {{ $ce['note'] }} @endif
@endif @if($report->calculation_log && count($report->calculation_log))
Calculation Log
@foreach($report->calculation_log as $entry)
@if(is_array($entry)) {{ $entry['step'] ?? '' }}: {{ $entry['result'] ?? '' }} @else {{ $entry }} @endif
@endforeach @endif