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

Batch Shift Assign
@csrf
@if(!empty($empLists)) @php($i=1) @foreach($empLists as $emp_val) @endforeach @endif
Sl# Code Name Emp Card Gender Department Employee Type Status
{{$i++}} {{$emp_val->emp_code}} {{$emp_val->emp_name}} {{$emp_val->emp_card}} @if($emp_val->emp_gender==1) Male @else Female @endif @if($emp_val->active_status==1) Active @else InActive @endif
@include('payroll.shift.batch_shift_assign.batchshiftassignModal') @endsection