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

OT Hour List

{{-- Roster Exchange --}}
@csrf
@php $i=1; @endphp @foreach ($ot_hour_requisitions as $list) @endforeach
#SL Name Code Department Date In Time Out Time Action
{{$i++}} {{ $list->employee_info->emp_name}} {{ $list->employee_info->emp_code}} {{ $list->department->name}} {{date("d-m-Y" ,strtotime($list->date))}} {{date("h:i A" ,strtotime($list->shift_in_time))}} {{date("h:i A" ,strtotime($list->shift_out_time))}} @if($list->approve_status==1)
{!! getApprovalInputField($list->id,714) !!}
@else @if(company_settings()->approval_system ==2) {{-- --}} @endif @endif
@endsection