@extends('layouts.app') @section('title', 'Investments') @section('content')

Investments

Capital contributions from investors

@can('create', App\Models\Investor::class) Record Investment @endcan
{{-- Filters --}}
{{-- Table --}}
@forelse ($investments as $inv) @empty @endforelse
# Date Investor Project Amount Payment Method Ref Actions
{{ $inv->id }} {{ $inv->investment_date->format('d M Y') }} {{ $inv->investor?->name ?? 'N/A' }} {{ $inv->project?->project_name ?? 'N/A' }} {{ number_format($inv->amount, 2) }} {{ $inv->paymentMethod?->method_name ?? '—' }} {{ $inv->reference_number ?? '—' }}
@can('delete', App\Models\Investor::class)
@csrf @method('DELETE')
@endcan
No investments recorded.
@if ($investments->hasPages()) @endif
@endsection