@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp @if(session('success'))
{{ session('success') }}
@endif
Overtime Requested
@csrf
Employee Name {{ $overtime->employee_first_name }}
Overtime Type {{ $overtime->overtime_for }}
Created Date {{ \Carbon\Carbon::parse($overtime->created_at)->format('l, d M Y') }}
To
Hours {{ \Carbon\Carbon::parse($overtime->start_hours)->format('g:i A') }} - {{ \Carbon\Carbon::parse($overtime->end_hours)->format('g:i A') }}
Total Hours {{ $overtime->total_hours }}
Date {{ \Carbon\Carbon::parse($overtime->date)->format('l, d M Y') }}
Reason {{ $overtime->reason }}
Status {{ $overtime->status }}
@if($overtime->status === 'Cancelled') @elseif($overtime->status === 'Pending' || $overtime->status === 'Verified')
@else @endif
@endsection