{{ __('Record, approve, and report on institutional expenses') }}
{{ __('Total This Month') }}
{{ $currency ?? 'GHS' }} {{ number_format($totalThisMonth ?? 0, 2) }}
{{ __('Pending Approval') }}
{{ $pendingCount ?? 0 }}
{{ __('Approved This Month') }}
{{ $currency ?? 'GHS' }} {{ number_format($approvedThisMonth ?? 0, 2) }}
{{ __('Budget Remaining') }}
{{ $currency ?? 'GHS' }} {{ number_format($budgetRemaining ?? 0, 2) }}
| {{ __('Description') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Actions') }} | |||
|---|---|---|---|---|---|---|
|
{{ $expense->description ?? '' }} @if($expense->receipt) {{ __('View Receipt') }} @endif |
{{ $currency ?? 'GHS' }} {{ number_format($expense->amount ?? 0, 2) }} | @php $expStatus = strtolower($expense->status ?? 'pending'); @endphp {{ $expStatus }} |
@if($expStatus === 'pending')
@endif
|
|||
|
🧾
{{ __('No expenses recorded') }}{{ __('Click Add Expense to log a new transaction.') }} |
||||||