@extends('base') @section('content')
@if($currentUser->can('user-create')) New User @endif

Users

@foreach($users as $user) @endforeach
Name Email User Type
{{$user->name}} @if($currentUser->can('user-update') || $currentUser->id == $user->id) @endif {{$user->name}} @if($currentUser->can('user-update') || $currentUser->id == $user->id) @endif {{$user->email}} {{ $user->role->display_name }}
@stop