@extends('layout.index') @section('title', 'Invalid Entries Report') @section('content')
@if ($message = Session::get('success'))
@endif
@csrf
@if (sizeof($aInvalid)) @php $i = 0; @endphp @foreach ($aInvalid as $val) @php $i++; @endphp @endforeach @else @endif
Sr.No Pakage Name Date Emp Code Emp Name Login Time Login Location Login Image Logout Time Logout Location Logout Image Status hours
{{ $i }} {{ $val->Pakage_name }} {{ date('d-m-Y', $val->attendance_date) }} {{ $val->emp_id }} {{ $val->employee }} {{ date('H:i', $val->inward_datetime) }} {{ utf8_decode($val->in_location) }} @if($val->in_image_url)
Profile Picture
@else
avatar
@endif
@if ($val->outword_datetime > 0) {{ date('H:i', $val->outword_datetime) }} @endif {{$val->out_location ? utf8_decode($val->out_location) : "-"}} @if($val->out_image_url)
Profile Picture
@else
avatar
@endif
{{ $val->success == 1 ? 'Present' : 'Absent' }} {{ $val->hours }}
No Record Found.
{{ $aInvalid->links() }}
@endsection