You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
PHTML
49 lines
1.3 KiB
PHTML
5 years ago
|
<h2 style="text-align:center"><b> {{ $sitename }} </b></h2 >
|
||
|
<h3 style="text-align:center">Laporan Harian</h3>
|
||
|
<p><b>Tanggal :</b> {{ $date }} </p>
|
||
|
<table style="border: 1px solid black; width: 100%">
|
||
|
<thead style="border: 1px solid black;">
|
||
|
<tr>
|
||
|
<th>Tanggal</th>
|
||
|
<th>Nama</th>
|
||
|
<th>Pembayaran</th>
|
||
|
<th>Total</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
@foreach ($transaksi as $index => $item)
|
||
|
<tr class="{{ ($index%2) ? 'gray' : '' }}">
|
||
|
<td>{{ $item->created_at->format('d-m-Y') }}</td>
|
||
|
<td>{{ $item->siswa->nama." (".$item->siswa->kelas->nama.")" }}</td>
|
||
|
<td>{{ $item->tagihan->nama }}</td>
|
||
|
<td>IDR. {{ format_idr($item->keuangan->jumlah) }}</td>
|
||
|
@php
|
||
|
$jumlah += $item->keuangan->jumlah
|
||
|
@endphp
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
<tr>
|
||
|
<td><b>Total</b></td>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td>IDR. {{ format_idr($jumlah) }}</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
@if(isset($print))
|
||
|
<style>
|
||
|
@media print {
|
||
|
tr.gray {
|
||
|
background-color: #ececec !important;
|
||
|
-webkit-print-color-adjust: exact;
|
||
|
}
|
||
|
th {
|
||
|
background-color: #dadada !important;
|
||
|
-webkit-print-color-adjust: exact;
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
<script>
|
||
|
window.print()
|
||
|
</script>
|
||
|
@endif
|