Account Statement

User: {{ $user->name ?? 'Customer' }}

From: {{ $from->format('d-m-Y') }} | To: {{ $to->format('d-m-Y') }}

@foreach($transactions as $i => $t) @endforeach
# Date/Time Description Type Amount
{{ $i + 1 }} {{ $t->created_at }} {{ $t->description ?? '-' }} {{ $t->type ?? '-' }} {{ $t->amount ?? 0 }}