@extends('layouts.userLayout') @section('content') {{-- --}}
@include('user.partials.flash_messages') {{--
--}}

📚 My Class Fee Information

Here is the listing of your all classes and fee records as per the Academic Year

{{--
@php $totalClasses = !empty($listing) ? count($listing) : 0; @endphp Total {{ $totalClasses }} {{ $totalClasses == 1 ? 'Class' : 'Classes' }}
--}}
📋 All Classes Fee Record Listings
@foreach ($listing as $key => $row) @endforeach
# Academic Year Branch Class Admission Fee Total Fee Status Action
{{ $key + 1 }} {{ @$row->academic_year ?? '' }} {{ @$row->branch_name ?? '-' }} {{ @$row->class_name ?? '' }} - {{ @$row->section_name ?? '' }} {{ @$currencySymbol }}{{ @$row->discount_price ? number_format($row->discount_price) : number_format($row->admission_fee) }} {{ @$row->subtotal_fee }} @if ($row->class_id == $row->user_class_id) Active @else Migrated @endif
@endsection