@php $tb = $data['trial_balance']; @endphp
{{ $tb['balanced'] ? 'Balanced' : 'Out of balance' }} Mode: {{ $tb['mode'] }}
@foreach($tb['rows'] as $r) @endforeach
CodeAccountTypeDebitCredit
{{ $r['code'] }} {{ $r['name'] }} {{ $r['type'] }} {{ \App\Support\Format::plain($r['debit']) }} {{ \App\Support\Format::plain($r['credit']) }}
Totals {{ \App\Support\Format::plain($tb['total_debit']) }} {{ \App\Support\Format::plain($tb['total_credit']) }}
Difference {{ \App\Support\Format::plain($tb['difference']) }}
@foreach($tb['warnings'] as $w)

{{ $w }}

@endforeach