@extends('admin.layout') @section('content')
View and analyze business expenses
Total Expenses
${{ number_format($totalAmount, 2) }}
| Date | Category | Description | Amount | Payment Method | Recorded By |
|---|---|---|---|---|---|
|
{{ $expense->expense_date->format('M d, Y') }}
|
{{ ucfirst($expense->category) }} |
{{ $expense->description }}
@if($expense->notes)
{{ $expense->notes }}
@endif
|
${{ number_format($expense->amount, 2) }}
|
{{ ucfirst($expense->payment_method) }} |
{{ $expense->user->name }}
|
No expenses foundTry adjusting your filters to see more results. |
|||||