@extends('layouts.app') @section('title', 'Attendance Adjustment Approvals') @section('content')
| Staff | Date | Requested In | Requested Out | Reason | Status | |
|---|---|---|---|---|---|---|
| {{ $r->user->name }} | {{ $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') : '-' }} | {{ $r->reason }} | {{ ucfirst($r->status) }} | @if ($r->status === 'pending') @endif |