Update users
This commit is contained in:
@@ -20,6 +20,9 @@
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('User name')}}
|
||||
</th>
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('Name')}}
|
||||
</th>
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('Email')}}
|
||||
</th>
|
||||
@@ -30,6 +33,7 @@
|
||||
@foreach ( $users as $user)
|
||||
<tr class="border border-gray-200">
|
||||
<td class="p-2 border border-gray-200"><a href="{{ route('users.show',$user->id)}}" class="underline">{{ $user->username }}</a></td>
|
||||
<td class="p-2 border border-gray-200">{{ $user->name }}</td>
|
||||
<td class="p-2 border border-gray-200">{{ $user->email }}</td>
|
||||
<td class="p-2 border border-gray-200"> </td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user