{{-- Transactions by Payment Method --}}
@php $income_confirmations = $data['incomes_per_method'] ?? []; @endphp @foreach ($income_confirmations as $method => $confirmation_data)
{{-- Title --}}
{{ $method }}
@if ($loop->index === 0) {{-- Initial Cash --}}
{{-- Brute Income --}}
{{-- Cash Withdrawn --}}
@else {{-- Total Vouchers --}}
@endif {{-- Expected Balance --}}
{{-- Cash Count --}}
{{-- Balance Shortfall --}}
{{-- Shortfall Reason --}} @isset($confirmation_data['balance_shortfall_reason'])
@endisset
@endforeach