@extends('layouts.app') @section('title', 'Attendance Log Details') @section('subtitle', 'View detailed attendance record') @section('content')
{{ $log->timestamp->format('M d, Y \a\t H:i:s') }}
Employee ID: {{ $log->user->employee_id }}
Position: {{ $log->user->position }}
Department: {{ $log->user->department?->name ?? 'N/A' }}
@if($log->user->shift)Shift: {{ $log->user->shift->name }}
@endif{{ $log->timestamp->format('l, F d, Y') }}
{{ $log->timestamp->format('H:i:s') }}
@if($log->action === 'clock_in') Clock In @else Clock Out @endif
{{ $log->location ?? 'N/A' }}
{{ $log->notes }}