@extends('layouts.admin') @section('title','Expenses') @section('page-title','Expense Records') @section('content')
| Title | Category | Date | Vendor | Payment | Amount | Actions |
|---|---|---|---|---|---|---|
| {{ $e->title }} | @if($e->category) {{ $e->category->icon }} {{ $e->category->name }} @else — @endif | {{ $e->expense_date->format('M j, Y') }} | {{ $e->vendor ?? '—' }} | {{ ucfirst(str_replace('_',' ',$e->payment_method)) }} | ₵{{ number_format($e->amount,2) }} | Edit |
| No expenses found. | ||||||