@extends('admin.layouts.app') @section('title', 'Attendance - HR Management') @section('page-title', 'Attendance Management') @section('content')
| Date | Staff | Department | Check In | Check Out | Hours | Status |
|---|---|---|---|---|---|---|
| {{ $log->date ? $log->date->format('M d, Y') : '-' }} | @if($log->staff) {{ $log->staff->user->name ?? 'N/A' }} @else N/A @endif | {{ $log->staff->department ?? 'N/A' }} | {{ $log->check_in_time ? substr($log->check_in_time, 0, 5) : '-' }} | {{ $log->check_out_time ? substr($log->check_out_time, 0, 5) : '-' }} | {{ $log->hours_worked ? number_format($log->hours_worked, 1) . ' hrs' : '-' }} | @if($log->status == 'present') Present @elseif($log->status == 'absent') Absent @elseif($log->status == 'late') Late @elseif($log->status == 'leave') On Leave @else {{ ucfirst($log->status) }} @endif |
| No attendance records found. | ||||||