@extends('layouts.appv2') @section('content')

Staff Overtime

Overtime List
Reset
@forelse($overtime as $ot) @empty @endforelse
Employee Name Overtime For Requested on Date Start Hours Est End Hours Est Total Hours Est Status Action
{{ $ot->employee_first_name }} {{ $ot->overtime_for }} {{ \Carbon\Carbon::parse($ot->created_at)->format('l, d M Y') }} {{ \Carbon\Carbon::parse($ot->date)->format('l, d M Y') }} {{ $ot->start_hours }} {{ $ot->end_hours }} {{ $ot->total_hours }} {{ $ot->status }}
No staff apply overtime yet
@endsection