@extends('layouts.app') @section('title', 'My Overtime') @section('content')

My Overtime Logs

@forelse ($logs as $l) @empty @endforelse
DateShift EndActual EndMinutesTypeStatus
{{ $l->ot_date->format('d M Y') }} {{ \Carbon\Carbon::parse($l->shift_end)->format('h:i A') }} {{ \Carbon\Carbon::parse($l->actual_end)->format('h:i A') }} {{ $l->ot_minutes }} {{ ucfirst(str_replace('_',' ',$l->ot_type)) }} {{ ucfirst($l->status) }}
No overtime logged yet.
@endsection