@extends('layouts.app') @section('title', 'Profit Distributions') @section('content')
Record and track profit distributions to investors
| # | Date | Investor | Project | Amount | Method | Type | Actions |
|---|---|---|---|---|---|---|---|
| {{ $dist->id }} | {{ $dist->distribution_date->format('d M Y') }} | {{ $dist->investor?->name ?? 'N/A' }} | {{ $dist->project?->project_name ?? 'N/A' }} | {{ $dist->is_reversal ? '-' : '' }}{{ number_format($dist->amount, 2) }} | {{ $dist->paymentMethod?->method_name ?? '—' }} | @if ($dist->is_reversal) Reversal @else Distribution @endif | |
| No distributions recorded. | |||||||