@php $tb = $data['trial_balance']; @endphp
| Code | Account | Type | Debit | Credit |
|---|---|---|---|---|
| {{ $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']) }} | |||
{{ $w }}
@endforeach