@php
$no = 0;
$jumDebet = 0;
$jumKredit = 0;
@endphp
@foreach($jurnal as $item)
@php
$no++;
@endphp
| {{ $no }} |
Ref. No |
: {{ $item['nomor'] }} |
| |
Tanggal |
: {{ $item['tanggal'] }} |
Keterangan : {{ $item['keterangan'] }} |
@foreach($item->jvDtl as $item2)
@php
$jumDebet += hilangTitik($item2['debet']);
$jumKredit += hilangTitik($item2['kredit']);
@endphp
| |
{{ $item2->tipeAkunDetail['kode'] }} |
{{ $item2->tipeAkunDetail['nama'] }} |
{{ $item2['debet'] }} |
{{ $item2['kredit'] }} |
@endforeach
| |
{{ mataUang($jumDebet) }} |
{{ mataUang($jumKredit) }} |
@php
$jumDebet = 0;
$jumKredit = 0;
@endphp
@endforeach