@extends('layouts.app') @section('title', 'Leave Requests') @section('breadcrumbs')
@endsection @section('content')| Employee | Leave Type | Dates | Days | Status | Submitted | Actions |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($leaveReq->employee->first_name ?? '?', 0, 1)) }}
{{ $leaveReq->employee->first_name }} {{ $leaveReq->employee->last_name }}
{{ $leaveReq->employee->employee_code }}
|
{{ $leaveReq->leaveType?->name ?? 'Unknown' }}
|
{{ $leaveReq->start_date->format('d M Y') }}
@if(!$leaveReq->start_date->eq($leaveReq->end_date))
to {{ $leaveReq->end_date->format('d M Y') }}
@endif
|
{{ $leaveReq->duration_label }} | {{ ucfirst($leaveReq->status) }} | {{ $leaveReq->created_at->format('d M Y') }} |
@if($leaveReq->isPending())
|