@extends('layouts.app') @section('title', 'Attendance Adjustment Approvals') @section('content')

Attendance Adjustment Approvals

@foreach ($requests as $r) @endforeach
StaffDateRequested InRequested OutReasonStatus
{{ $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')
@csrf @method('PATCH')
@csrf @method('PATCH')
@endif
@endsection