@extends('layouts.admin')
@section('title', 'Expenses')
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| Date | Title | Category | Amount | Department | Status | |
|---|---|---|---|---|---|---|
| {{ $e->expense_date?->format('M j, Y') }} | {{ $e->title }} | {{ $e->category }} | {{ $currency }} {{ number_format($e->amount, 2) }} | {{ $e->department?->name ?? '—' }} | View | |
| No expenses found. | ||||||