تقرير رسوم الطلاب 📊

@if(request('grade_id')) إلغاء @endif
@if($processedStudents->isEmpty())

لا يوجد طلاب

لم يتم العثور على طلاب بناءً على معايير البحث

@else
@foreach($processedStudents as $student) @endforeach
الطالب الصف الدراسي إجمالي الرسوم المدفوع المتبقي الإجراءات
{{ substr($student->full_name, 0, 1) }}
{{ $student->full_name }}
{{ $student->grade->name ?? 'غير محدد' }}
{{ number_format($student->financial_status['total_fees'], 2) }} ريال
{{ number_format($student->financial_status['total_paid'], 2) }} ريال
@if($student->financial_status['balance'] > 0)
{{ number_format($student->financial_status['balance'], 2) }} ريال
@else
مكتمل
@endif
دفع
@endif