32 lines
1011 B
PHP
32 lines
1011 B
PHP
@extends('admin.layouts.app')
|
|
@section('title','Daftar Guru')
|
|
@section('content')
|
|
<div class="card p-4">
|
|
<div class="d-flex justify-content-between mb-3">
|
|
<h4>Daftar Guru</h4>
|
|
<a href="{{ route('admin.guru.create') }}" class="btn btn-primary">Tambah Guru</a>
|
|
</div>
|
|
|
|
<table class="table">
|
|
<thead><tr><th>#</th><th>Nama</th><th>Email</th><th>Aksi</th></tr></thead>
|
|
<tbody>
|
|
@foreach($gurus as $g)
|
|
<tr>
|
|
<td>{{ $loop->iteration }}</td>
|
|
<td>{{ $g->name }}</td>
|
|
<td>{{ $g->email }}</td>
|
|
<td>
|
|
<a href="{{ route('admin.guru.edit', $g) }}" class="btn btn-sm btn-outline-secondary">Edit</a>
|
|
<form action="{{ route('admin.guru.destroy', $g) }}" method="POST" style="display:inline">@csrf @method('DELETE')
|
|
<button class="btn btn-sm btn-danger" onclick="return confirm('Hapus?')">Hapus</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
{{ $gurus->links() }}
|
|
</div>
|
|
@endsection
|