@if($errors->get('msgError'))
{{$errors->first()}}
@endif
@if(session('success'))
{{ session('success') }}
@endif
| SELECT |
USERNAME |
EMAIL |
USERLIST PERMISSION |
CREATE PERMISSION |
EDIT PERMISSION |
DELETE PERMISSION |
CREATED AT |
ACTION |
@if(count($data) > 0)
@foreach($data as $item)
| # |
{{$item->username}} |
{{$item->email}} |
@if($item->role_noti == 'true')
Active
@else
Disabled
@endif
|
@if($item->role_create=='true')
Active
@else
Disabled
@endif
|
@if($item->role_edit=='true')
Active
@else
Disabled
@endif
|
@if($item->role_delete=='true')
Active
@else
Disabled
@endif
|
|
@endforeach
@else
no content
@endif
{{$data->links('components.paginate')}}