@extends('layouts.default') @section('meta') Reports | Workday Time Clock @endsection @section('content')

{{ __("Employee Schedule Report") }} {{ __("Return") }}

@csrf
@isset($empSched) @foreach ($empSched as $v) @endforeach @endisset
{{ __("Employee Name") }} {{ __("Start Time") }} {{ __("Off Time") }} {{ __("Start Date") }} {{ __("End Date") }} {{ __("Hours") }} {{ __("Rest Days") }} {{ __("Status") }}
{{ $v->employee }} @php if($v->intime != null) { if($tf == 1) { echo e(date('h:i A', strtotime($v->intime))); } else { echo e(date('H:i ', strtotime($v->intime))); } } @endphp @php if($v->outime != null) { if($tf == 1) { echo e(date('h:i A', strtotime($v->outime))); } else { echo e(date('H:i ', strtotime($v->outime))); } } @endphp @php echo e(date("l, F j, Y", strtotime($v->datefrom))); @endphp @php echo e(date("l, F j, Y", strtotime($v->dateto))); @endphp {{ $v->hours }} {{ $v->restday }} @if($v->archive == '0') Present Schedule @else Past Schedule @endif
@endsection @section('scripts') @endsection