{{ $college->college_name }}

{{ $college->affiliated_by }}

{{ $college->address }}

Student Payment Report

Academic Year: {{$academic_year}} / Payment Status:{{ ucfirst($status)}}

@php $totalAmount = 0; $totalPaid = 0; @endphp @foreach ($student_dtls as $index => $student_dtl) @php $totalAmount += $student_dtl['fee_structure']->fee_amount; $totalPaid += $student_dtl['paid_amount']; @endphp @endforeach
S.No Registration No. Name Contact No. Payment Status Fee Type Fee Name Total Amount Paid Amount
{{ $index + 1 }} {{ $student_dtl['student']->register_no }} {{ $student_dtl['student']->firstname }} {{ $student_dtl['student']->lastname }} {{ $student_dtl['student']->mobileno }} {{ ucfirst($status) }} {{ $student_dtl['fee_structure']->feeType->feesName }} {{ $student_dtl['fee_structure']->fee_name }} {{ $student_dtl['fee_structure']->fee_amount }} {{ $student_dtl['paid_amount'] }}
Total {{number_format($totalAmount,2) }} {{ number_format($totalPaid, 2) }}