63 lines
1.9 KiB
PHP
63 lines
1.9 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 name="csrf-token" content="{{ csrf_token() }}">
|
|
<style>
|
|
table.static {
|
|
position: relative;
|
|
border: 1px solid #543535;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
th, td {
|
|
border: 1px solid #543535;
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
</style>
|
|
<title>CETAK DATA REKAPAN - LKS SMK 1 TAPEN</title>
|
|
</head>
|
|
<body>
|
|
<div class="form-group">
|
|
<p align="center"><b>REKAPAN DATA PESERTA SELEKSI LKS</b></p>
|
|
<table class="static">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#No</th>
|
|
<th scope="col">Nis</th>
|
|
<th scope="col">Nama</th>
|
|
<th scope="col">Jurusan</th>
|
|
<th scope="col">Nilai Raport</th>
|
|
<th scope="col">Nilai Keterampilan</th>
|
|
<th scope="col">Nilai Ujian</th>
|
|
<th scope="col">Tahun</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($datarekap as $nomor => $data)
|
|
<tr>
|
|
<td>{{ $nomor + 1 }}</td>
|
|
<td>{{ $data->nis }}</td>
|
|
<td>{{ $data->nama }}</td>
|
|
<td>{{ $data->jurusan }}</td>
|
|
<td>{{ $data->nilai_raport }}</td>
|
|
<td>{{ $data->nilai_keterampilan }}</td>
|
|
<td>{{ $data->nilai_ujian }}</td>
|
|
<td>{{ $data->tahun }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<script>
|
|
window.print();
|
|
</script>
|
|
</body>
|
|
</html>
|