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

No discounts have been applied.

@else @foreach ($discounts as $studentDiscount) @endforeach
Fee Type Discount Value
{{ $studentDiscount['fee_type_name'] ?? '—' }} {{ $studentDiscount['discount_name'] ?? '—' }} ৳{{ number_format((float) $studentDiscount['amount_in_taka'], 1) }}
@endif