@extends('layouts.admin') @section('title', setting('school_name', 'ShulePoint') . ' | Finance Dashboard') @section('page-title', 'Finance Dashboard') @section('content') {{-- Compact stat strip --}}
| Receipt | Learner | Amount | Method | Ref | @include('layouts.partials.school-th')Open | |
|---|---|---|---|---|---|---|
| #{{ $p->id }} | @if(!empty($p->first_name)){{ $p->first_name }} {{ $p->last_name }}@else—@endif | KES {{ number_format($p->amount, 0) }} | {{ $p->method }} | {{ $p->reference ?? '–' }} | @include('layouts.partials.school-td', ['schoolId' => $p->school_id ?? null])||
|
No payments yet Recorded payments will appear here. |
||||||
| Title | Amount | Date | @include('layouts.partials.school-th')|
|---|---|---|---|
| {{ $e->title }} | KES {{ number_format($e->amount, 0) }} | {{ $e->spent_on }} | @include('layouts.partials.school-td', ['schoolId' => $e->school_id ?? null])|
|
No expenses yet Recorded expenses will appear here. |
|||