{{ __('Expenses') }}

@include('accounting.partials.nav')
@if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $err)
  • {{ $err }}
  • @endforeach
@endif
@csrf

Pick a category first to see subcategories.

Use for bank transfer fees, gateway fees, etc.

This is posted under Expense → Fees using the selected fee category.

Expense posts from your selected account to the Expense Control account.

Recent Expenses

View in History
@if(($recentExpenses ?? collect())->isEmpty())

No expenses recorded yet.

@else
@foreach($recentExpenses as $row) @php $fee = (float) ($row->fee ?? 0); @endphp @endforeach
Date From Category Remark User Total
{{ \Carbon\Carbon::parse($row->txn_date)->format('Y-m-d h:i A') }} {{ $row->from_account_name ?? '—' }} {{ $row->category_name ?? '—' }} @if(!empty($row->subcategory_name)) / {{ $row->subcategory_name }} @endif {{ $row->description ?? '—' }} {{ $row->user_name ?? '—' }} {{ number_format(((float) $row->amount) + $fee, 2) }} @if($fee > 0)
Fee {{ number_format($fee, 2) }}
@endif
Total {{ number_format($recentExpenses->sum(fn($r) => (float) ($r->amount ?? 0) + (float) ($r->fee ?? 0)), 2) }}
@endif