TIF_E41201027/resources/views/backend/admin/cetak_pdf.blade.php

47 lines
1.0 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<title>Laporan PDF </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<style type="text/css">
table tr td,
table tr th{
font-size: 9pt;
}
</style>
<center>
<h5>Laporan PDF </h4>
</center>
<table class='table table-bordered'>
<thead>
<tr>
<th>NO</th>
<th>Nama</th>
<th>Email</th>
<th>Role</th>
<th>Password</th>
</tr>
</thead>
<tbody>
@php $no = 1; @endphp
@foreach ($data['admin'] as $item)
<tr>
<td>{{ $no++ }}</td>
<td>{{ $item->name }}</td>
<td>{{ $item->email }}</td>
<td>Admin</td>
<td>{{ $item->password }}</td>
</tr>
@endforeach
</tbody>
</table>
<script type="text/javascript">
window.print();
</script>
</body>
</html>