| SN | Date & Day | User | Entry Time | Exit Time | Status |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ \Carbon\Carbon::parse($record->date)->format('M d, Y, l') }} |
{{ $record->user->name ?? '' }}
{{ $record->user->email ?? '' }} {{ $record->user->phone ?? '' }} |
@if(!empty($record->entry_time)) {{ \Carbon\Carbon::parse($record->entry_time)->format('h:i:s a') }} @endif | @if(!empty($record->exit_time)) {{ \Carbon\Carbon::parse($record->exit_time)->format('h:i:s a') }} @endif | @if($record->status == 1) Present @elseif($record->status == 2) Absent @elseif($record->status == 3) Late @elseif($record->status == 4) Personal Leave @else Absent @endif |