megacommit

This commit is contained in:
Didier Slof 2023-02-02 08:17:38 +01:00
parent 2451ab45cb
commit 34ed81516b
Signed by: didier
GPG key ID: 01E71F18AA4398E5
51 changed files with 1200 additions and 251 deletions

View file

@ -0,0 +1,41 @@
@extends('manage.layout')
@section('content')
<h1>Users</h1>
<hr/>
<div id="users">
<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Role</th>
<th>Actions</th>
</tr>
@foreach($users as $user)
<tr>
<td>
<a href="{{ route('manage.user', ['id' => $user->user_id]) }}">
{{ $user->name }}
</a>
</td>
<td>
<a href="{{ route('manage.user', ['id' => $user->user_id]) }}">
{{ $user->email }}
</a>
</td>
<td>
<a href="{{ route('manage.user', ['id' => $user->user_id]) }}">
{{ $user->role }}
</a>
</td>
<td>
<a href="{{ route('manage.user', ['id' => $user->user_id]) }}">
View
</a>
</td>
</tr>
@endforeach
</table>
</div>
@endsection