@extends('layouts.app') @section('title', 'My Break Requests') @section('content')
| Date | Type | Time | Status |
|---|---|---|---|
| {{ $r->break_date->format('d M Y') }} | {{ ucfirst($r->break_type) }} | {{ $r->start_time ? \Carbon\Carbon::parse($r->start_time)->format('h:i A') : '-' }} – {{ $r->end_time ? \Carbon\Carbon::parse($r->end_time)->format('h:i A') : '-' }} | {{ ucfirst($r->status) }} |
| No break requests yet. | |||