@extends('layouts.student')
@section('title','Fee Payments')
@section('breadcrumb')
Fee Payments@endsection
@section('student-content')
Fee Payments
Total Fee
₹{{ number_format(optional($student->feeStructure)->total_course_fee, 0) }}
Paid
₹{{ number_format($student->total_paid, 0) }}
Due
₹{{ number_format($student->total_due, 0) }}
| Receipt | Date | Amount | Mode | Session | Action |
@forelse($payments as $p)
| {{ $p->receipt_no }} |
{{ $p->payment_date->format('d M Y') }} |
₹{{ number_format($p->amount_paid, 0) }} |
{{ $p->payment_mode }} |
{{ optional($p->academicSession)->name }} |
|
@empty
| No payments found. |
@endforelse
@endsection