💰 SakuApp - Transaction Report

Generated: {{ now()->format('Y-m-d H:i:s') }} | User: {{ auth()->user()->name }}
Total Income: {{ number_format($totalIncome, 2) }}
Total Expense: {{ number_format($totalExpense, 2) }}
Balance: {{ number_format($balance, 2) }}
@forelse($transactions as $txn) @empty @endforelse
Date Title Type Amount Note
{{ $txn->date->format('Y-m-d') }} {{ $txn->title }} {{ ucfirst($txn->type) }} {{ number_format($txn->amount, 2) }} {{ $txn->note ?? '-' }}
No transactions found.