Credit Usage

₦{number_format($transactions['total'], 2, '.', ',')}

Total Credit used

Credit Usage History

@if (count($transactions['rows']) == 0)
No credit usage recorded at the moment.
@else @foreach ($transactions['rows'] as $index => $row) @endforeach
SN Reference Date Amount Status Narration
{$index + 1} {$row['reference']} {$row['date']} ₦{number_format($row['amount'], 2, '.', ',')} @if ($row['status'] == 'success') Approved @elseif ($row['status'] == 'pending') Pending @elseif ($row['status'] == 'expired') Expired @else Rejected @endif {ucfirst($row['remark'])}
@endif
@partial('main-footer', ['message' => $message]);