@include('includes/header') @include('includes/sidebar')
@if (\Session::has('success')) @endif @if (\Session::has('error')) @endif
@php $i = 0; @endphp @foreach($data as $val) @php $i++; @endphp @endforeach
ID UserName FirstName LastName Role Gender Phone Number Desgination Status Action
{{ $i }} {{ $val['UserName'] }} {{ $val['FirstName'] }} {{ $val['LastName'] }} {{ $val['role_name'] }} @if($val['Gender'] == 1) Male @elseif($val['Gender'] == 0) Female @endif {{ $val['PhoneNumber'] }} {{ $val['Designation'] }} @if($val['Status'] == 0)
Active
@else
InActive
@endif
{{$data->render('custom_pagination')}}
@include('includes/footer')