@extends('layouts.cashier') @section('title','New Fee Entry') @section('breadcrumb')
| Enrollment | Student | Course | Total | Paid | Due | |
|---|---|---|---|---|---|---|
| {{ $s->enrollment_no }} |
{{ $s->name }}
{{ optional($s->institute)->name ?? '—' }}
|
{{ optional($s->course)->name ?? '—' }} | ₹{{ number_format($fee, 0) }} | ₹{{ number_format($paid, 0) }} | @if($due > 0) ₹{{ number_format($due, 0) }} @else Paid @endif | |
| No students found. | ||||||