@include('layout/backend/_header') @include('layout/backend/_navbar')
@include('layout/backend/_sidebar')

@if ( isset($_GET['s_t']) ) @endif

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