-
Dashboard
- {{'All Users'}} Add User
@if(Session::has('success'))
×
{!! session('success') !!}
@endif
S.no. |
Name |
Email |
Organization |
Current Position |
Actions |
{{ csrf_field() }}
@php $ctr = 0 @endphp
@if( isset($users) && count($users) > 0 )
@foreach($users as $k => $v)
@if( $v['id']!=1 )
{{ ++$ctr }} |
{{ $v['first_name'] }} {{ $v['last_name'] }} |
{{ $v['email'] }} |
{{ $v['organization'] }} |
{{ $v['current_position'] }} |
|
@endif
@endforeach
@endif
@if( count($users)==0 )
No records found
@endif
@if(count($users) > 0)
{{ $users->links() }}
@endif