@extends('layouts.app')
@section('title', 'Correction Request')
@section('header', 'Attendance Correction')
@section('subheader', $correction->employee?->full_name . ' · ' . $correction->date->format('M d, Y'))
@section('content')
Request Details
- Employee
- {{ $correction->employee?->full_name }}
- Date
- {{ $correction->date->format('l, M d, Y') }}
- Requested In
- {{ $correction->requested_in?->format('H:i') ?? '—' }}
- Requested Out
- {{ $correction->requested_out?->format('H:i') ?? '—' }}
- Reason
- {{ $correction->reason }}
@if ($correction->reviewed_at)
- Reviewed By
- {{ $correction->reviewer?->name ?? '—' }}
on {{ $correction->reviewed_at->format('M d, Y H:i') }}
- Comment
- {{ $correction->review_comment ?: '—' }}
@endif
@endsection