@extends('layouts.app') @section('title', 'Fee Management') @section('page-title', 'Fee Management') @section('content')
| Name | Amount | Frequency | Actions |
|---|---|---|---|
| {{ $s->name }} | ₹{{ number_format($s->amount, 2) }} | {{ $s->frequency }} | |
| No fee structures yet. | |||
Total pending fees: ₹{{ number_format(is_numeric($pendingSummary) ? $pendingSummary : $pendingSummary->where('status', 'pending')->first()?->total_amount ?? 0, 2) }}