@extends('layouts.student') @section('title','Fee Payments') @section('breadcrumb')@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) }}

Payment History
@forelse($payments as $p) @empty @endforelse
ReceiptDateAmountModeSessionAction
{{ $p->receipt_no }} {{ $p->payment_date->format('d M Y') }} ₹{{ number_format($p->amount_paid, 0) }} {{ $p->payment_mode }} {{ optional($p->academicSession)->name }}
No payments found.
@endsection