Student Fee Invoices

@forelse ($student->feeInvoices as $feeInvoice)

{{$feeInvoice->name}}

Amount: {{$feeInvoice->amount}}

Paid: {{$feeInvoice->paid}}

Due Date: {{$feeInvoice->due_date->toFormattedDateString()}}

@if ($feeInvoice->balance->isLessThanOrEqualTo(0))
Paid
@elseif ($feeInvoice->paid->isGreaterThan(0))
Paid Partially
@else
Not Paid
@endif
@empty

No Fee Invoice Records

@endforelse