@extends('layouts.admin') @section('page-title', 'Leave Management') @section('page-subtitle', 'Manage employee leave applications') @section('content')
| Employee | Dates | Duration | Reason | Status | Action |
|---|---|---|---|---|---|
|
{{ $leave->employee->user->name ?? 'Unknown' }}
{{ $leave->employee->designation ?? '' }}
|
From: {{ \Carbon\Carbon::parse($leave->start_date)->format('d M Y') }}
To: {{ \Carbon\Carbon::parse($leave->end_date)->format('d M Y') }}
|
{{ $leave->total_days }} Days | {{Str::limit($leave->reason, 50)}} | {{ ucfirst($leave->status) }} |
@if($leave->status === 'pending')
|
| No leave applications found. | |||||