MIF_E31210385/Modules/User/Resources/views/content/guru.blade.php

44 lines
1.6 KiB
PHP

@include('components.theme.pages.header')
<section>
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">{{ $data['subtitle'] }}</h1>
</div>
<div class="row">
<div class="col-md-12 card">
<div class="card-body">
<div class="table-responsive">
<table class="table table-striped" id="data-table">
<thead>
<tr>
<th>No.</th>
<th>Nama Lengkap</th>
<th>NIP</th>
<th>No. Telepon</th>
</tr>
</thead>
<tbody>
@php
$no = 1;
@endphp
@foreach(\App\Models\User::where('level', 3)->get() as $rows)
<tr>
<td>{{ $no++ }}</td>
<td>{{ $rows->name }}</td>
<td>{{ $rows->guru->nip ?? '-' }}</td>
<td>{{ $rows->guru->telepon ?? '-' }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
@push('scripts')
<script>
$('#data-table').DataTable();
</script>
@endpush
@include('components.theme.pages.footer')