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

{{__('obs.employee')}} {{__('obs.account')}} {{__('obs.lists')}}

@if(!empty($empLists)) @php($i = ($empLists->perPage() * ($empLists->currentPage() - 1))+1) @foreach($empLists as $emp_val) @endforeach @endif
{{__('obs.sl')}}# {{__('obs.code')}} {{__('obs.name')}} {{__('obs.email')}} {{__('obs.gender')}} {{__('obs.department')}} {{__('obs.designation')}} {{__('obs.joining')}} {{__('obs.date')}} {{__('obs.status')}} {{__('obs.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($emp_val->active_status==1) Active @else InActive @endif {{__('obs.add')}}
@if(!empty($empLists)) {{ $empLists->links("pagination::bootstrap-4")}} @endif
@include('payroll.emp_management.acc_info.add_acc_info') @endsection