@extends('admin-layouts.vertical', ['title' => 'Fees Report']) {{-- @section('css') @vite(['node_modules/simple-datatables/dist/style.css']) @endsection --}} @section('content')
Total Records
Total Fees
Total Paid
Total Pending
S.No | Student Name | Academic Year | Term | Class | Section | Fees Amount | Paid Amount | Remaining | Status | Due Date |
---|---|---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $report->student->student_name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($report->academicYear->from_date)->format('Y') }} - {{ \Carbon\Carbon::parse($report->academicYear->to_date)->format('Y') }} | {{ $report->term->term_name ?? '-' }} | {{ $report->classRoom->class_name ?? '-' }} | {{ $report->section->sec_name ?? '-' }} | ₹{{ number_format($report->fees_amount, 2) }} | ₹{{ number_format($paidAmount, 2) }} | ₹{{ number_format($remainingAmount, 2) }} | @switch($report->status) @case('paid') Paid @break @case('partially_paid') Partially Paid @break @case('overdue') Overdue @break @default Pending @endswitch | {{ $report->due_date ? $report->due_date->format('d-m-Y') : '-' }} |
No fees records match your selected criteria. Please adjust your filters and try again.