Initial Commit

This commit is contained in:
dann4624
2022-09-28 09:38:08 +02:00
parent cac476f80f
commit 2d04a269e6
355 changed files with 52166 additions and 25 deletions
+24
View File
@@ -0,0 +1,24 @@
<h2>@lang('users')</h2>
@if(count($data->users) >= 1)
<table>
<tbody>
@foreach($data->users as $user)
<tr>
<td class="align-middle">
@can('users_view')
<a href="{{route('users.show',['user' => $user])}}"
target="_blank"
class="btn btn-success">
{{$user->username}}
</a>
@else
{{$user->username}}
@endcan
</td>
</tr>
@endforeach
</tbody>
</table>
@else
@lang('no_amount') @lang('users')
@endif