@extends('layouts.employee') @section('content')

Leave Applications

View and manage your leave applications

@forelse($leaves as $leave) @empty @endforelse
From To Days Status Applied On
{{ \Carbon\Carbon::parse($leave->start_date)->format('d M Y') }} {{ \Carbon\Carbon::parse($leave->end_date)->format('d M Y') }} {{ $leave->total_days }} {{ ucfirst($leave->status) }} @if($leave->admin_remark)
{{ $leave->admin_remark }}
@endif
{{ $leave->created_at->format('d M Y') }}
No leave applications found
@endsection