@php $structures = collect($getState()); @endphp
@if ($structures->isEmpty())

No fee structure found for the current class and session.

@else @foreach ($structures as $structure) @endforeach
Fee Type Frequency Amount
{{ $structure->feeType?->name ?? '—' }} {{ $structure->feeType?->is_monthly ? 'Monthly' : 'One-time' }} ৳{{ number_format((float) $structure->amount, 2) }}
@endif