53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Struk Belanja</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
.header, .footer {
|
|
text-align: center;
|
|
}
|
|
.items {
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
border-top: 1px solid #000;
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
.items th, .items td {
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
.total {
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h2>{{$registrasi->nomor_urut}}</h2>
|
|
<p>{{ $registrasi->registrasi_tanggal }}</p>
|
|
</div>
|
|
|
|
<table class="items">
|
|
<thead>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>DOKTER</td>
|
|
<td>{{ $registrasi->pegawai_name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>RUANG PELAYANAN</td>
|
|
<td>{{ $registrasi->ruang_pelayanan_name }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|