MIF_E31210245/resources/views/pages/cetak/cetak.blade.php

136 lines
3.7 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nota Bukti Pembayaran Pendaftaran</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
width: 70%;
margin: auto;
background-color: #fff;
padding: 20px;
border: 1px solid #ddd;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 20px;
}
.header h1 {
margin: 0;
}
.header p {
margin: 0;
}
.content {
margin-bottom: 20px;
}
.content table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.content th, .content td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
vertical-align: top;
}
.content th {
background-color: #f2f2f2;
}
.total {
font-weight: bold;
}
.footer {
text-align: right;
}
.footer p {
margin: 0;
}
.signature {
margin-top: 50px;
text-align: right;
}
.signature p {
margin: 0;
}
.signature .name {
margin-top: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Nota Bukti Pembayaran {{ $title }}</h1>
<p>Nama Sekolah</p>
<p>Alamat Sekolah</p>
</div>
<div class="content">
<table>
<tr>
<th>Nama Siswa</th>
<td>AJisaka Siddiq</td>
{{-- <td>{{ $nama_siswa }}</td> --}}
</tr>
<tr>
<th>Kelas</th>
<td>XII IPA 3</td>
{{-- <td>{{ $kelas }}</td> --}}
</tr>
<tr>
<th>Tanggal Pembayaran</th>
<td>{{ \Carbon\Carbon::now()->format('d M Y') }}</td>
{{-- <td>{{ \Carbon\Carbon::now()->format('d M Y') }}</td> --}}
</tr>
</table>
<table>
<thead>
<tr>
<th>No</th>
<th>Tagihan</th>
<th>Jumlah</th>
</tr>
</thead>
<tbody>
@foreach ($transaksi as $item)
<tr>
<td>{{ $no++ }}</td>
<td>{{ $item->keterangan }}</td>
<td>Rp. {{ number_format($item->total, 0, ',', '.') }}</td>
</tr>
@endforeach
<tr class="total">
<td colspan="2">Total</td>
<td>Rp. {{ number_format($total->total_sum, 0, ',', '.') }}</td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
<p>Terima kasih atas pembayaran pendaftaran Anda.</p>
</div>
<div class="signature">
<p>Mengetahui,</p>
<p class="name">(_______________________)</p>
</div>
</div>
</body>
</html>
<script>
window.print();
window.onafterprint = function() {
document.body.innerHTML = '';
};
</script>