@extends('layouts.app') @section('title', 'My Attendance Adjustments') @section('content')
| Date | Requested In | Requested Out | Status |
|---|---|---|---|
| {{ $r->attendance_date->format('d M Y') }} | {{ $r->requested_check_in ? \Carbon\Carbon::parse($r->requested_check_in)->format('h:i A') : '-' }} | {{ $r->requested_check_out ? \Carbon\Carbon::parse($r->requested_check_out)->format('h:i A') : '-' }} | {{ ucfirst($r->status) }} |
| No adjustment requests yet. | |||