@extends('layout.index') @section('title', 'Employee wise Report') @section('content')
@if ($message = Session::get('success'))
@endif
@if (sizeof($aEmployeeData)) @php $i = 0; @endphp @foreach ($aEmployeeData as $val) @php $i++; @endphp @endforeach @else @endif
Sr.No Date Login Location Login Time Login Image Logout Location Logout Time Logout Image Status Hours
{{ $i }} {{ date('d-m-Y', $val->attendance_date) }} {{ $val->in_location }} {{ date('h:i A', $val->inward_datetime) }} @if ($val->in_image_url) @else
No Image
@endif
{{ $val->out_location ? $val->out_location : '-' }} {{ $val->outword_datetime ? date('h:i A', $val->outword_datetime) : ' ' }} @if ($val->out_image_url) @else
No Image
@endif
@if (isset($val->success) && $val->success == 1)
Present
@else
Absent
@endif
{{ $val->hours ? $val->hours : '-' }}
No Record Found.
{{ $aEmployeeData->links() }}
@endsection