@extends('Admin/Layouts/app') @section('content') @php if(sizeof($_GET)>0 && array_key_exists("status",$_GET) && $_GET['status'] !='') { $status = $_GET['status']; } else { $status = ''; } if(sizeof($_GET)>0 && array_key_exists("name",$_GET) && $_GET['name'] !='') { $name = $_GET['name']; } else { $name = ''; } if(sizeof($_GET)>0 && array_key_exists("order",$_GET) && $_GET['order'] !='') { $order = $_GET['order']; } else { $order = ''; } @endphp

Employees Summary

{{$total_user}}

Total Users

{{$active_user}}

Active Users

{{$inactive_user}}

Inactive Users
@foreach($users as $data) @endforeach
Name Executive Mobile # Status
@if($data->user_photo!='') @else @endif
{{$data->name}}

{{$data->email}}

{{getExecutive($data->executive_id)->name}}

{{getExecutive($data->executive_id)->frm}}

{{$data->mobile_no}}
@if($data->status =='Y') @else @endif
{{ $users->links('Admin.pagination.pagination')}}
@endsection