Total Classes {{ $totalClasses }}
Total Students {{ $totalStudents }}
Collections (RWF) {{ number_format($totalPayments) }}
Destinations {{ $totalDestinations }}
{{ __('Recent Payments') }}
@forelse($recentPayments as $payment) @empty @endforelse
Student Class Destination Term Amount Balance Date
{{ $payment->student->name ?? 'N/A' }} {{ $payment->student->class ?? 'N/A' }} {{ $payment->destination }} {{ $payment->term }} {{ number_format($payment->amount) }} RWF @if($payment->balance > 0) Surplus: {{ number_format($payment->balance) }} @elseif($payment->debt > 0) {{ number_format($payment->debt) }} @else - @endif {{ $payment->payment_date ? $payment->payment_date->format('M d, Y') : '-' }}
No recent payments found.