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

Attendance Administration

Review attendance, correction requests, remote work, and lock finalized months.

@csrf
@foreach($records as $x)@endforeach
UserDateStatusWorkedLateOTModeLocked
{{ $x->user->name }}{{ $x->work_date }}{{ $x->status }}{{ $x->worked_minutes }}{{ $x->late_minutes }}{{ $x->overtime_minutes }}{{ $x->work_mode }}{{ $x->is_locked?'Yes':'No' }}
{{ $records->links() }}
@endsection