68 lines
2.6 KiB
PHP
68 lines
2.6 KiB
PHP
@extends('layout.master')
|
|
|
|
@section('title', 'Data Guru')
|
|
|
|
@push('css')
|
|
<link href="{{ url('sbAdmin/vendor/datatables/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="card border-top-primary shadow mb-4">
|
|
<div class="card-body pt-3">
|
|
<div class="mb-2">
|
|
<a href="{{ route('create_guru') }}" class="btn btn-sm btn-primary">Tambah Guru</a>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered" id="datatable" width="100%" cellspacing="0">
|
|
<thead>
|
|
<tr>
|
|
<th width="5%">No</th>
|
|
<th>Nama</th>
|
|
<th>NIP</th>
|
|
<th>Email</th>
|
|
<th>Address</th>
|
|
<th>Phone</th>
|
|
<th class="text-center">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
@foreach($alamien as $guru)
|
|
<tr>
|
|
<th scope="row">{{ $loop->iteration }}</th>
|
|
<td>{{ $guru->nama }}</td>
|
|
<td>{{ $guru->nipa }}</td>
|
|
<td>{{ $guru->email }}</td>
|
|
<td>{{ $guru->kabupaten }}</td>
|
|
<td>{{ $guru->nohp1 }}</td>
|
|
<td>
|
|
<form class="text-center" method="post">
|
|
<button type="submit" class="btn btn-warning">Edit</button>
|
|
<button type="submit" class="btn btn-danger">Hapus</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
|
|
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.13.6/js/dataTables.bootstrap4.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#datatable').DataTable();
|
|
});
|
|
</script>
|
|
@endsection
|
|
|
|
@push('js')
|
|
<!-- Page level plugins -->
|
|
<script src="{{ url('sbAdmin/vendor/datatables/jquery.dataTables.min.js') }}"></script>
|
|
<script src="{{ url('sbAdmin/vendor/datatables/dataTables.bootstrap4.min.js') }}"></script>
|
|
|
|
<!-- Page level custom scripts -->
|
|
<script src="{{ url('sbAdmin/js/demo/datatables-demo.js') }}"></script>
|
|
@endpush |