@extends('portal.layout') @section('title', 'Feasibility Report #'.str_pad($report->id, 5, '0', STR_PAD_LEFT)) @section('content') @php $score = $report->feasibility_score ?? 0; $scoreColor = $score >= 70 ? 'var(--green)' : ($score >= 40 ? 'var(--yellow)' : 'var(--red)'); $scoreLabel = $score >= 70 ? 'Feasible' : ($score >= 40 ? 'Marginal' : 'Challenging'); $scoreBadge = $score >= 70 ? 'badge-green' : ($score >= 40 ? 'badge-yellow' : 'badge-red'); $cost = $report->cost_estimates ?? []; $projectTypeLabels = ['residential' => 'Residential', 'commercial' => 'Commercial', 'industrial' => 'Industrial', 'mixed' => 'Mixed Use']; $ptLabel = $projectTypeLabels[$report->project_type ?? 'residential'] ?? 'Residential'; @endphp