@forelse($adjustments as $key => $adjustment)
| {{ $key + 1 }} |
{{ $adjustment->partner->full_name ?? 'N/A' }} |
{{ date('d-m-Y', strtotime($adjustment->transaction_date)) }} |
@if($adjustment->transaction_type == 'Allocation')
Allocation
@elseif($adjustment->transaction_type == 'Withdrawal')
Withdrawal
@else
Adjustment
@endif
|
{{ number_format($adjustment->credit_amount > 0 ? $adjustment->credit_amount : $adjustment->debit_amount, 2) }}
|
{{ number_format($adjustment->running_balance, 2) }} |
{{ Str::limit($adjustment->description, 50) ?? '-' }} |
Edit
|
@empty
| No adjustments found. |
@endforelse