@extends('layouts.default') @section('meta') Schedules | Workday Time Clock @endsection @section('styles') @endsection @section('content') @include('admin.modals.modal-add-schedule')

{{ __('Schedules') }}

@isset($schedules) @foreach ($schedules as $sched) @endforeach @endisset
{{ __('Employee') }} {{ __('Time (Start-Off)') }} {{ __('Hours') }} {{ __('Rest Days') }} {{ __('From (Date)') }} {{ __('To (Date)') }} {{ __('Status') }} {{ __('Actions') }}
{{ $sched->employee }} @php if($tf == 1) { echo e(date("h:i A", strtotime($sched->intime))); echo " - "; echo e(date("h:i A", strtotime($sched->outime))); } else { echo e(date("H:i", strtotime($sched->intime))); echo " - "; echo e(date("H:i", strtotime($sched->outime))); } @endphp {{ $sched->hours }} hr {{ $sched->restday }} @php echo e(date('D, M d, Y', strtotime($sched->datefrom))) @endphp @php echo e(date('D, M d, Y', strtotime($sched->dateto))) @endphp @if($sched->archive == '0') {{ __('Present') }} @else {{ __('Previous') }} @endif @if($sched->archive == '0') @else @endif
@endsection @section('scripts') @endsection