@extends('layouts.bootstrap') @section('title', 'Investment Management') @section('content')
| Date | Title | Type | Source | Amount | Outstanding | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $investment->start_date->format('M d, Y') }} |
{{ $investment->title }}
@if($investment->reference_number)
Ref: {{ $investment->reference_number }} @endif |
{{ $investment->type_display_name }} | {{ $investment->source ?? '-' }} |
${{ number_format($investment->amount, 2) }}
@if($investment->interest_rate)
{{ $investment->interest_rate }}% APR @endif |
${{ number_format($investment->outstanding_balance, 2) }}
@if($investment->total_paid > 0)
Paid: ${{ number_format($investment->total_paid, 2) }} @endif |
{{ ucfirst($investment->status) }}
@if($investment->term_months && $investment->status == 'active')
{{ $investment->term_months }} months @endif |