{{ $account->name }}

{{ $account->type_label ?? ucfirst($account->type) }}

Saldo Saat Ini

Rp {{ number_format(abs($account->current_balance ?? 0), 0, ',', '.') }}

Pemasukan Bulan Ini

+Rp {{ number_format($monthlyIncome ?? 0, 0, ',', '.') }}

Pengeluaran Bulan Ini

-Rp {{ number_format($monthlyExpense ?? 0, 0, ',', '.') }}

Perubahan Bersih

{{ (($monthlyIncome ?? 0) - ($monthlyExpense ?? 0)) >= 0 ? '+' : '-' }}Rp {{ number_format(abs(($monthlyIncome ?? 0) - ($monthlyExpense ?? 0)), 0, ',', '.') }}

Transaksi

@if(isset($transactions) && method_exists($transactions, 'links'))
{{ $transactions->withQueryString()->links() }}
@endif