@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp @if(session('success'))
{{ session('success') }}
@endif
My Overtime
@if($overtime->isEmpty())

You have not applied for any overtime requests yet.

@else @foreach($overtime as $ot)
{{ $ot->overtime_for }}
{{ \Carbon\Carbon::parse($ot->date)->format('j F Y') }} {{$ot->total_hours}} [{{$ot->status_text}}] {{ \Carbon\Carbon::parse($ot->start_hours)->format('g:i A') }} - {{ \Carbon\Carbon::parse($ot->end_hours)->format('g:i A') }}
@endforeach @endif
@endsection