@extends('business.layouts.admin') @section('breadcrumb')
| Date | Employee | Check-In Details | Check-Out Details | Status |
|---|---|---|---|---|
|
{{ \Carbon\Carbon::parse($row->date)->format('d M, Y') }}
Day -
{{ $row->day_of_week }}
|
{{ $row->employee_name }} | {{-- In Time Box --}}
@if ($row->in_time)
{{ date('h:i A', strtotime($row->in_time)) }}
@if ($row->in_latitude)
View Location
@endif
|
{{-- Out Time Box --}}
@if ($row->out_time)
{{ date('h:i A', strtotime($row->out_time)) }}
@if ($row->out_latitude)
View Location
@endif
|
@if (\Carbon\Carbon::parse($row->date)->isFuture()) Upcoming @elseif(!$row->in_time) Absent @else Present @endif |