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

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

@csrf
@isset($empAtten) @foreach ($empAtten as $v) @endforeach @endisset
{{ __("Date") }} {{ __("Employee Name") }} {{ __("Time In") }} {{ __("Time Out") }} {{ __("Total Hours") }}
{{ $v->date }} {{ $v->employee }} @php if($v->timein != null) { if($tf == 1) { echo e(date('h:i:s A', strtotime($v->timein))); } else { echo e(date('H:i:s', strtotime($v->timein))); } } @endphp @php if($v->timeout != null) { if($tf == 1) { echo e(date('h:i:s A', strtotime($v->timeout))); } else { echo e(date('H:i:s', strtotime($v->timeout))); } } @endphp {{ $v->totalhours }}
@endsection @section('scripts') @endsection