@extends('layouts.admin') @section('title', setting('school_name', 'ShulePoint') . ' | Finance Reports') @section('page-title', 'Finance Reports') @section('content') {{-- Statistic widgets --}}
| Method | Count | Total |
|---|---|---|
| {{ $c->method }} | {{ $c->n }} | KES {{ number_format($c->total, 0) }} |
|
No collections yet Payments grouped by method will appear here. |
||
| Invoice | Learner | Balance |
|---|---|---|
| {{ $b->invoice_no }} | @if($b->learner){{ $b->learner->first_name }} {{ $b->learner->last_name }} {{ $b->learner->admission_no }}@else#{{ $b->learner_id }}@endif | KES {{ number_format($b->balance, 0) }} |
|
No outstanding balances All invoices are fully paid. |
||
| Invoice | Learner | Balance | Status |
|---|---|---|---|
| {{ $d->invoice_no }} | @if($d->learner){{ $d->learner->first_name }} {{ $d->learner->last_name }} {{ $d->learner->admission_no }}@else#{{ $d->learner_id }}@endif | KES {{ number_format($d->balance, 0) }} | {{ ucfirst($d->status) }} |
|
No defaulters Every learner is up to date on fees. |
|||