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

Dynamic OT Shift List

Create
@php $i=1; @endphp @foreach ($shift_extends as $list) @endforeach
SL Name Code Departmet Date Shift Extend Hours Action
{{$i++}} {{ $list->employee_info->emp_name}} {{ $list->employee_info->emp_code}} {{ $list->department ? $list->department->name : null}} {{date("d-m-Y" ,strtotime($list->date))}} {{ $list->shift_info->name}} {{$list->extend_hours}} @if($list->approve_status==1)
{!! getApprovalInputField($list->id,714) !!}
@else @if(company_settings()->approval_system ==2) {{-- --}} @endif @endif {{-- --}}
@endsection