@extends('layouts.admin') @section('title', 'Expense Details') @section('page-title', 'Expense Details') @section('page-subtitle', 'View expense information') @section('content')
Recorded {{ $expense->created_at->format('M d, Y') }}
Category
{{ $expense->category?->name ?? 'N/A' }}
Amount
GH₵{{ number_format($expense->amount, 2) }}
Description
{{ $expense->description }}
Expense Date
{{ $expense->expense_date->format('M d, Y') }}
Payment Method
{{ str_replace('_', '-', $expense->payment_method) }}
Vendor
{{ $expense->vendor }}
Invoice Number
{{ $expense->invoice_number }}
Approved By
{{ $expense->approver->name }}
Approved At
{{ $expense->approval_date->format('M d, Y H:i') }}
Notes
{{ $expense->notes }}
Receipt file attached
View/Download Receipt