@extends('admin.layout.master') @section('home')

Deleted Employee Lists

@if(!empty($empLists)) @php($i = ($empLists->perPage() * ($empLists->currentPage() - 1))+1) @foreach($empLists as $emp_val) @endforeach @endif
Sl# ID Code Name Email Gender Department Designation Emp Type Joining Date Status Action
{{$i++}} {{$emp_val->id}} {{$emp_val->emp_code}} {{$emp_val->emp_name}} {{$emp_val->email}} @if($emp_val->emp_gender==1)Male @else Female @endif {{date('d-m-Y',strtotime($emp_val->joining_date))}} @if($emp_val->active_status==1) Active @else InActive @endif View Activate
@if(!empty($empLists)) {{ $empLists->appends(request()->query())->links("pagination::bootstrap-4")}} @endif
@endsection