@extends('admin.layout.master') @section('content') @include('flash-message')

OT Requisition(Shift Wise) List

Add OT Requisition
@csrf
@php $i=1; @endphp @foreach ($ot_rosters as $roster) @endforeach
#SL Name Department Day Shift Date Action
{{$i++}} {{$roster ? $roster->emp_info->emp_name : null}} {{$roster->department ? $roster->department->name : null}} {{week_days()[$roster->day_id]}} @if($roster->weekend) (Weekend) @endif {{$roster->fetch_shift_info_data ? $roster->fetch_shift_info_data->name : null}} {{date('d-m-Y',strtotime($roster->start_date))}}
@if($roster->approve_status==1) {!! getApprovalInputField($roster->id,712) !!} @else @if(company_settings()->approval_system ==2) {{-- --}} @endif @endif
@endsection