TIF_NGANJUK_E41211253/resources/views/admin/pages/datapegawai.blade.php

76 lines
2.3 KiB
PHP

@extends('admin.layout.main')
@section('content')
<main id="main" class="main">
<div class="pagetitle">
<h1>Data Tables</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item">Tables</li>
<li class="breadcrumb-item active">Data</li>
</ol>
</nav>
</div><!-- End Page Title -->
<section class="section">
<div class="row">
<div class="card-body">
<h5 class="card-title">Default Table</h5>
<!-- Default Table -->
<table class="table">
<thead>
<tr>
<th scope="col">No</th>
<th scope="col">Nama</th>
<th scope="col">Kedudukan</th>
<th scope="col">Email</th>
<th scope="col">Opsi</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Brandon Jacob</td>
<td>Designer</td>
<td>28</td>
<td>2016-05-25</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Bridie Kessler</td>
<td>Developer</td>
<td>35</td>
<td>2014-12-05</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Ashleigh Langosh</td>
<td>Finance</td>
<td>45</td>
<td>2011-08-12</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Angus Grady</td>
<td>HR</td>
<td>34</td>
<td>2012-06-11</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Raheem Lehner</td>
<td>Dynamic Division Officer</td>
<td>47</td>
<td>2011-04-19</td>
</tr>
</tbody>
</table>
<!-- End Default Table Example -->
</div>
</div>
</section>
</main><!-- End #main -->
@endsection