34 lines
840 B
PHP
34 lines
840 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<h3>Kelola Data User</h3>
|
|
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Nama</th>
|
|
<th>Email</th>
|
|
<th>Role</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($user as $u)
|
|
<tr>
|
|
<td>{{ $u->name }}</td>
|
|
<td>{{ $u->email }}</td>
|
|
<td>{{ $u->role }}</td>
|
|
<td>
|
|
<a href="{{ route('admin.user.edit', $u->id) }}" class="btn btn-warning btn-sm">
|
|
Edit
|
|
</a>
|
|
<button class="btn btn-danger btn-sm">Hapus</button>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@endsection
|