@extends('admin.layouts.app') @section('title', 'Expenses') @section('content')
| Title | Category | Amount | Payment | Admin | Date | |
|---|---|---|---|---|---|---|
| {{ $e->title }} | {{ ucfirst($e->category) }} | {{ $siteSettings['currency'] }}{{ number_format($e->amount,2) }} | {{ str_replace('_',' ',ucfirst($e->payment_method)) }} | {{ $e->admin->name ?? '—' }} | {{ $e->expense_date->format('M d, Y') }} |