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

Employee Lists

@include('payroll.includes.printAndExcel')
@if(!empty($empLists)) @php($i = ($empLists->perPage() * ($empLists->currentPage() - 1))+1) @foreach($empLists as $emp_val) {{----}} @endforeach @endif
Sl# Code Name Email Gender Department Designation Emp Type Joining Date Cost Center Status Action
{{$i++}} {{$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(!empty($emp_val->fetch_cost_center)){{$emp_val->fetch_cost_center->name}}@endif@if($emp_val->active_status==1) Active @else InActive @endif View Docs Edit Transfer Delete
@if(!empty($empLists)) {{ $empLists->appends(request()->query())->links("pagination::bootstrap-4")}} @endif
@endsection