@extends('layouts.app', [ 'pageTitle' => $title, ]) @section('content')

{{ $title }}

Catat dan kelola pengeluaran

Tambah Pengeluaran
@include('partials.alerts')

Total Pengeluaran (Filter saat ini)

Rp {{ number_format($totalExpense, 0, ',', '.') }}

@foreach($categories as $category) @endforeach
Reset
@forelse($expenses as $expense) @empty @endforelse
Tanggal Kategori Jumlah Keterangan Oleh
{{ $expense->expense_date->format('d/m/Y') }} {{ $expense->category->name ?? '-' }} {{ $expense->formatted_amount }} {{ $expense->description ?? '-' }} {{ $expense->creator->name ?? '-' }}
Edit
Belum ada data pengeluaran
@if($expenses->hasPages())
{{ $expenses->links() }}
@endif
@endsection