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.
52 lines
1.5 KiB
PHTML
52 lines
1.5 KiB
PHTML
<h2 style="text-align:center"><b> {{ $sitename }} </b></h2 >
|
|
<h3 style="text-align:center">Tabungan</h3>
|
|
<br>
|
|
<p><b>Nama :</b> {{ $siswa->nama }} <b>Kelas : </b> {{ $siswa->kelas->nama }}{{ isset($siswa->kelas->periode) ? '('.$siswa->kelas->periode->nama.')' : '' }}</p>
|
|
<p><b>Saldo : </b>IDR. {{ $saldo }}</p>
|
|
<table style="border: 1px solid black; width: 100%">
|
|
<tr style="border: 1px solid black;">
|
|
<th>No</th>
|
|
<th>Tanggal</th>
|
|
<th>KD</th>
|
|
<th>Jumlah</th>
|
|
</tr>
|
|
@foreach ($tabungan as $index => $item)
|
|
<tr class="{{ ($index%2) ? 'gray' : '' }}">
|
|
<td style="min-width:20px;text-align: center;">
|
|
{{ $index+1 }}
|
|
</td>
|
|
<td style="min-width:200px;text-align: center;">
|
|
{{ $item->created_at->format('d-m-Y') }}
|
|
</td>
|
|
<td style="min-width:20px;text-align: center;">
|
|
@if($item->tipe == 'in')
|
|
Menabung
|
|
@else
|
|
Penarikan
|
|
@endif
|
|
</td>
|
|
<td style="min-width:200px;text-align: left;">
|
|
IDR. {{ format_idr($item->jumlah) }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
<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()
|
|
|
|
window.onafterprint = function(){
|
|
window.close()
|
|
}
|
|
</script> |