@extends('layouts.app') @section('title', 'Correct Attendance') @section('content')
| Employee: | {{ $attendance->employee->name }} |
| Date: | {{ $attendance->attendance_date->format('d M Y') }} |
| Clock In: | {{ $attendance->clock_in ? $attendance->clock_in->format('H:i') : '-' }} |
| Clock Out: | {{ $attendance->clock_out ? $attendance->clock_out->format('H:i') : '-' }} |
| Status: | {{ $attendance->status_label }} |
| Duration: | {{ $attendance->work_duration ? number_format($attendance->work_duration, 2) . ' hours' : '-' }} |
| Late: | {{ $attendance->late_minutes }} minutes |
Delete this attendance record permanently.