@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp @if(session('success'))
{{ session('success') }}
@endif
Overtime to Approve
@if($toapprovelist->isEmpty()) @else @foreach($toapprovelist as $toapprovelist) @endforeach @endif
Employee Name OT Type Hours Total Hours Date Status Action
NO OVERTIME NEED TO APPROVE YET
{{ $toapprovelist->employee_first_name }} {{ $toapprovelist->overtime_for }} {{ \Carbon\Carbon::parse($toapprovelist->start_hours)->format('g:i A') }} - {{ \Carbon\Carbon::parse($toapprovelist->end_hours)->format('g:i A') }} {{ $toapprovelist->total_hours }} {{ \Carbon\Carbon::parse($toapprovelist->date)->format('l, d M Y') }} {{ $toapprovelist->status_text}} View
@endsection