113 lines
2.8 KiB
PHP
113 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>Laporan Penilai Jaminan</title>
|
|
|
|
<style>
|
|
* {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
/** Define the header rules **/
|
|
@page {
|
|
margin-top: 100px;
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
#header {
|
|
position: fixed;
|
|
top: -80px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 50px;
|
|
text-align: center;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.header-logo {
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 10px;
|
|
max-height: 80px;
|
|
max-width: 150px;
|
|
}
|
|
|
|
.header-title {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#footer {
|
|
position: fixed;
|
|
bottom: -50px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 50px;
|
|
text-align: center;
|
|
border-top: 1px solid #ddd;
|
|
padding-top: 10px;
|
|
font-size: 9px;
|
|
}
|
|
|
|
.page-number:after {
|
|
content: counter(page) " dari " counter(pages);
|
|
}
|
|
|
|
.content {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.page-break {
|
|
page-break-after: always;
|
|
}
|
|
|
|
#footer {
|
|
position: fixed;
|
|
bottom: -50px;
|
|
left: 0;
|
|
right: 0;
|
|
height: 50px;
|
|
text-align: left;
|
|
border-top: 1px solid #ddd;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
body {
|
|
margin-top: 3cm;
|
|
margin-bottom: 120px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.border {
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body style="width: 90%; margin: auto;">
|
|
<header id="header">
|
|
<table style="width: 100%; border: none;">
|
|
<tr>
|
|
<td style="width: 20%; text-align: left;" class="header-left">
|
|
@include('lpj::component.logo-bag')
|
|
</td>
|
|
<td style="text-align: right;">
|
|
<div style="">
|
|
<p style="margin: 0; padding:0; font-size:10px;">Tanggal: {{ date('Y-m-d') }}</p>
|
|
<p style="margin: 0; padding:0; font-size:10px;">Waktu: {{ date('H:i:s') }}</p>
|
|
<p style="margin: 0; padding:0; font-size:10px;">User: {{ Auth::user()->name }}</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</header>
|
|
|