@extends('backend.layouts.master') @section('title', 'Project Details') @section('admin-content')
@include('backend.layouts.partials.logout')

Project Details

{{-- --}}
Name: {{ $project->name }}
Description: {{ $project->description }}
Status: @if ($project->status === 'Active') Active @else Inactive @endif
Launch Status: @if ($project->launching_soon) ✅ Launched @else ❌ Launching Soon @endif
IRR: {{ $project->target_irr }}
ROI: {{ $project->roi }}
Asset Value: {{ $project->asset_value }}
Asset Type: {{ $project->asset_type }}
Minimum Investment: {{ $project->minimum_investment }}
Image: @if ($project->image) Project Image @else

No image uploaded

@endif
Back Edit
@endsection