Opening Balance
{{ number_format($partneropening_balance, 2) }}
Total Allocated
{{ number_format($totalAllocated, 2) }}
Total Withdrawn (Debit)
{{ number_format($totalWithdrawn, 2) }}
Transaction Details
Period: {{ date('d-m-Y', strtotime($startDate)) }} to {{ date('d-m-Y', strtotime($endDate)) }}
| # | Date | Transaction Type | Description | Debit | ||
|---|---|---|---|---|---|---|
| {{ $counter++ }} | {{ date('d-m-Y', strtotime($transaction->transaction_date)) }} | @if($transaction->transaction_type == 'Allocation') Allocation @elseif($transaction->transaction_type == 'Withdrawal') Withdrawal @elseif($transaction->transaction_type == 'Adjustment') Adjustment @else {{ $transaction->transaction_type }} @endif | {{ $transaction->description ?? '-' }} | @if($transaction->debit_amount > 0) {{ number_format($transaction->debit_amount, 2) }} @else - @endif | ||
| No transactions found for the selected period. | ||||||