Merge pull request #59 from nwalke/master

Updated email on users list to be a link
This commit is contained in:
Dan Brown
2016-02-11 18:53:12 +00:00

View File

@ -32,7 +32,15 @@
</a> </a>
@endif @endif
</td> </td>
<td>{{$user->email}}</td> <td>
@if($currentUser->can('user-update') || $currentUser->id == $user->id)
<a href="/users/{{$user->id}}">
@endif
{{ $user->email }}
@if($currentUser->can('user-update') || $currentUser->id == $user->id)
</a>
@endif
</td>
<td>{{ $user->role->display_name }}</td> <td>{{ $user->role->display_name }}</td>
</tr> </tr>
@endforeach @endforeach