@extends('layouts.app') @section('title', 'Leave Requests') @section('content')
| Staff | Type | From | To | Days | Reason | Status | |
|---|---|---|---|---|---|---|---|
| {{ $r->user->name }} | {{ ucfirst($r->leave_type) }} | {{ $r->start_date->format('d M Y') }} | {{ $r->end_date->format('d M Y') }} | {{ $r->daysRequested() }} | {{ $r->reason }} | {{ ucfirst($r->status) }} | @if ($r->status === 'pending') @endif |