@extends('layouts.admin') @section('title', 'Investors') @section('page-title', 'Investor Management') @section('page-subtitle', 'Track fixed-term investments and profit payments') @section('content')

Total Investment

₦{{ number_format($totalInvestment) }}

Expected Total Profit

₦{{ number_format($totalExpectedProfit) }}

Register Investor
@forelse($investors as $inv) @php $isDue = $inv->status === 'active' && $inv->next_payment_date->isPast(); @endphp @empty @endforelse
Reference Investor Name Principal Rate Frequency Next Payment Maturity Status Actions
{{ $inv->reference }} {{ $inv->full_name }} ₦{{ number_format($inv->principal_amount) }} {{ $inv->profit_rate }}% {{ $inv->payment_frequency }} {{ $inv->next_payment_date->format('d M Y') }} @if($isDue) (DUE)@endif {{ $inv->maturity_date->format('d M Y') }} {{ ucfirst($inv->status) }}
No investors registered. Register first investor.
@endsection