Browse Source

Replace name for username in list view

pull/260/head
Chris 6 years ago
parent
commit
4c8c5fa27f
  1. 4
      resources/views/users/index.blade.php

4
resources/views/users/index.blade.php

@ -19,7 +19,7 @@
<table class="table table-hover">
<thead>
<tr>
<th>{{ __('app.user.name') }}</th>
<th>{{ __('app.user.username') }}</th>
<th>{{ __('app.apps.password') }}</th>
<th>{{ __('app.apps.autologin_url') }}</th>
<th class="text-center" width="100">{{ __('app.settings.edit') }}</th>
@ -30,7 +30,7 @@
@if($users->first())
@foreach($users as $user)
<tr>
<td>{{ $user->name }}</td>
<td>{{ $user->username }}</td>
<td><i class="fa {{ (!is_null($user->password) ? 'fa-check' : 'fa-times') }}" /></td>
<td>
@if(is_null($user->autologin))

Loading…
Cancel
Save