@extends('layouts.app') @section('title', 'Expense — '.$expense->description) @section('content')
{{ title_case_words($expense->category) }} · {{ $expense->expense_date?->format('d M Y') }}
| Account | Debit | Credit |
|---|---|---|
| {{ $expense->account?->code }} — {{ $expense->account?->name }} | {{ money($expense->amount) }} | |
| {{ $expense->payment_method === 'on_credit' ? 'Accounts payable' : ($expense->payment_method === 'momo' ? 'Mobile money float' : 'Cash at bank') }} | {{ money($expense->amount) }} |
Posted to the general ledger — see the journal and the profit & loss.
@else @include('components.empty-state', [ 'icon' => '📒', 'title' => 'Not yet posted', 'message' => 'Approving this expense will debit the ledger account and credit the settlement account, and it will then appear on the profit & loss report.', ]) @endif