@extends('layouts.app') @section('content')
| Employee | ID Number | Department | Status | Check-in Method | Check-in Time | Actions |
|---|---|---|---|---|---|---|
| {{ $attendance->employee_name }} | {{ $attendance->employee_id_number }} | {{ $attendance->department ?? 'N/A' }} | {!! $attendance->getAttendanceStatusBadge() !!} | {!! $attendance->getCheckInMethodBadge() !!} | {{ $attendance->check_in_time ? $attendance->check_in_time->format('M d, h:i A') : 'N/A' }} | @if($attendance->isBiometric()) @endif @if($attendance->hasSignature()) @endif |
| No attendance records yet | ||||||