@extends('layouts.app') @section('title', 'Expenses') @section('content')
| Date | Category | Vendor | Description | Amount | Status |
|---|---|---|---|---|---|
| {{ $e->date->format('d M') }} | {{ $e->category }} | {{ $e->vendor ?? '-' }} | {{ $e->description }} | KES {{ number_format($e->amount) }} | {{ ucfirst($e->approval_status) }} |