@extends('layouts.admin') @section('title', setting('school_name', 'ShulePoint') . ' | Expenses') @section('page-title', 'Expenses') @section('content') {{-- Add expense card --}}
| Title | Category | Amount | Date | @include('layouts.partials.school-th')Action | |
|---|---|---|---|---|---|
| {{ $e->title }} | @if($e->category) {{ $e->category }} @else — @endif | KES {{ number_format($e->amount, 0) }} | {{ $e->spent_on }} | @include('layouts.partials.school-td', ['schoolId' => $e->school_id ?? null])||
|
No expenses recorded Add the first expense using the form above. |
|||||