| Employee | Clock In | Clock Out | Work Hrs | Status | Action |
|---|---|---|---|---|---|
|
{{ $emp->full_name }}
{{ $emp->employee_code }} •
{{ $emp->department }}
|
{{-- Clock In --}}
@if ($att && $att->clock_in)
{{ \Carbon\Carbon::parse($att->clock_in)->format('h:i A') }}
@else
--:--
@endif
|
{{-- Clock Out --}}
@if ($att && $att->clock_out)
{{ \Carbon\Carbon::parse($att->clock_out)->format('h:i A') }}
@else
--:--
@endif
|
{{-- Hours --}}
{{ $att ? $att->formatted_total_time : '00:00' }} hrs
|
{{-- Status Badge --}}
@if ($att) @php $sClass = match ($att->status) { 'present' => 'badge-present', 'late' => 'badge-late', 'absent' => 'badge-absent', 'on_leave' => 'badge-leave', default => 'badge-none', }; @endphp {{ ucfirst(str_replace('_', ' ', $att->status)) }} @if ($att->is_regularized) @endif @else No Record @endif | {{-- Action --}}|
| No active employees found. | |||||