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

Shift List
@csrf
@if (!empty($shiftList)) @php $i =1; @endphp @foreach ($shiftList as $val) @endforeach @endif
#SL Shift Code Shift Name Shift Type Location Status Action
{{ $i++ }} {{ $val->shift_code }} {{ $val->name }} @if ($val->shift_type == 1) {{ 'Day Shift' }} @elseif($val->shift_type==2) {{ 'Night Shift' }} @else {{ 'Evening Shift' }} @endif @if ($val->ware_house) {{ $val->ware_house->name_eng }} @elseif($val->ware_id ==0) All @endif
{{-- @if (!empty($shiftList)) {{ $shiftList->links('pagination::bootstrap-4') }} @endif --}}
@include('payroll.shift.shift_list.add_shift') @endsection