@extends('layouts.parent') @section('title', 'Fee Statements - Kidscholl') @section('styles') @endsection @section('content')

School Fee Statements

Track payment timelines, download invoices, and pay quarterly fees securely.

Session: 2025-2026
@php $unpaidCount = $fees->where('status', 'Unpaid')->count(); @endphp @if($unpaidCount > 0) @endif
@foreach($fees as $fee) @php $statusClass = ($fee->status == 'Paid') ? 'status-paid' : 'status-unpaid'; @endphp @endforeach
Installment / Term Amount Due Date Payment Status Receipt Date Action
{{ $fee->term }}
₹{{ number_format($fee->amount, 2) }} {{ \Carbon\Carbon::parse($fee->due_date)->format('d M Y') }} {{ $fee->status }} {{ $fee->paid_date ? \Carbon\Carbon::parse($fee->paid_date)->format('d M Y') : 'N/A' }} @if($fee->status == 'Paid') Receipt @else @if($razorpayEnabled && !empty($razorpayKeyId)) @else @endif @endif
Fee Payment Guidelines
  • Late fee fines of ₹150 per day will apply if quarterly balances remain unpaid after the specified due date.
  • Online receipt confirmations are updated instantly after digital gateway validation. Check logs for transaction records.
  • For structural disputes or scholarship adjustments, please contact the accounts department at the Main Campus desk.
@endsection @section('scripts') @if($razorpayEnabled && !empty($razorpayKeyId)) @endif @endsection