@extends('backend.layouts.master') @section('title', 'Investment Details - Admin Panel') @section('admin-content')

Investment Details

Investment Information
Investor Name {{ $investment->investor->name }}
Project Name {{ $investment->project->name }}
Amount Invested {{ number_format($investment->amount_invested, 2) }}
Share Price {{ number_format($investment->share_price, 2) }}
Transaction Number {{ $investment->transaction_number }}
Transaction Date {{ date('d M Y', strtotime($investment->transaction_date)) }}
Share Certificate @if($investment->share_certificate) View Certificate 📄 @else No file uploaded @endif
Terms & Conditions @if($investment->term_condition) View Terms 📄 @else No file uploaded @endif
Back
@endsection