103 lines
3.4 KiB
PHP
103 lines
3.4 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">
|
|
<title>Data Alternatif</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
|
|
<style type="text/css">
|
|
.garis1{
|
|
border-top:3px solid black;
|
|
height: 2px;
|
|
border-bottom:1px solid black;
|
|
|
|
}
|
|
|
|
#hrd{
|
|
text-align:center;
|
|
}
|
|
#nama-hrd{
|
|
margin-top:100px;
|
|
text-align:center;
|
|
}
|
|
#ttd {
|
|
position: absolute;
|
|
bottom: 10;
|
|
right: 20;
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<table>
|
|
<tr>
|
|
<td style="padding-right: 240px; padding-left: 20px"></td>
|
|
<td>
|
|
<center>
|
|
<font size="4">PT.Intecon Bangun Persada</font><br>
|
|
<font size="2">Alamat: Jl. Cadika No. 4A, Sempusari, Kaliwates, Jember, Jawa Timur, Indonesia</font><br>
|
|
<font size="2">Email: <a href="mailto:inteconbangunpersada@gmail.com">inteconbangunpersada@gmail.com</a></font><br>
|
|
<font size="2">Phone: +62 331 423445</font><br>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr class="garis1"/>
|
|
<div style="margin-top: 25px; margin-bottom: 25px;">
|
|
<center><strong><u>DATA ALTERNATIF</u></strong></center>
|
|
</div>
|
|
|
|
<div class="collapse show" id="listkriteria">
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover" id="DataTable">
|
|
<thead>
|
|
<tr>
|
|
<th>Nama</th>
|
|
<th>Usia</th>
|
|
<th>Pendidikan</th>
|
|
<th>IPK</th>
|
|
<th>Jurusan</th>
|
|
<th>Lama Studi</th>
|
|
<th>Pengalaman</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@php $no = 1; @endphp
|
|
@foreach ($alternatif as $row)
|
|
<tr>
|
|
<td>{{ $row->nama_alternatif }}</td>
|
|
<td>{{ $row->usia }}</td>
|
|
<td>{{ $row->pendidikan }}</td>
|
|
<td>{{ $row->ipk }}</td>
|
|
<td>{{ $row->jurusan }}</td>
|
|
<td>{{ $row->lama_studi }}</td>
|
|
<td>{{ $row->pengalaman }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="ttd" class="row">
|
|
<div class="col-md-4"></div>
|
|
<div class="col-md-4">
|
|
<p id="hrd">Jember, {{ $tanggal }}</p>
|
|
<p id="hrd"><strong>HRD & staff admin</strong></p>
|
|
<div id="nama-hrd"><strong><u>Yudi Sulistiawan</u></strong><br />
|
|
NIP. 3175044408730004</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
|
|
|
|
</html> |