@extends('layouts.app') @section('title', 'Fee Structures | 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 @endsection @section('navbar-right')
5
@endsection @section('content')

Fee Structures

New Fee Structure
@if(session('success')) @endif
@forelse($feeStructures as $structure) @empty @endforelse
Class Term Academic Year Total Amount Items Actions
{{ $structure->schoolClass->name }} ({{ $structure->schoolClass->stream }}) Term {{ $structure->term }} {{ $structure->academic_year }} KES {{ number_format($structure->total_amount, 2) }} {{ $structure->items->count() }} Items
@csrf @method('DELETE')

No fee structures configured yet.

Create First Structure
@endsection