@extends('layouts.app') @section('title', 'Fee Structure Details | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')

{{ auth()->user()->school?->name ?? 'Institution Axis' }}

@endsection @section('breadcrumb') Home / Finance / Fee Structures / Details @endsection @section('content')

Fee Structure Breakdown

{{ $feeStructure->schoolClass->name }} ({{ $feeStructure->schoolClass->stream }}) • Term {{ $feeStructure->term }} • {{ $feeStructure->academic_year }}

Edit Structure Back to List
Component Breakdown
@foreach($feeStructure->items as $item) @endforeach
Item Name Amount (KES)
{{ $item->name }} {{ number_format($item->amount, 2) }}
Total Amount KES {{ number_format($feeStructure->total_amount, 2) }}
Billing Stats

Overview of students linked to this class structure.


Total Students: {{ $feeStructure->schoolClass->students->count() }}
@endsection