Update users

This commit is contained in:
Александр Бабкин
2022-06-24 16:51:08 +03:00
parent 7a46864d33
commit 310613e9a8
4 changed files with 117 additions and 32 deletions

View File

@@ -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">&nbsp;</td>
</tr>