@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp @if(session('success'))
{{ session('success') }}
@endif
Leave Applied
@csrf
Employee Name {{ $leave->employee_first_name }}
Leave Type {{ $leave->leavetype_name }}
Created Date {{ $leave->created_date }}
To
Total days {{ $leave->total_days }}
Start Date {{ \Carbon\Carbon::parse($leave->start_date)->format('l, d M Y') }}
End Date {{ \Carbon\Carbon::parse($leave->end_date)->format('l, d M Y') }}
Return Date {{ \Carbon\Carbon::parse($leave->return_date)->format('l, d M Y') }}
Attachment @if($leave->attachment) Download @else @endif
Reason {{ $leave->reason }}
Leave Status {{ $leave->status_label }}
Leave History
@if($leave->status_label === 'Cancelled') @elseif($leave->status_label === 'Pending' || $leave->status_label === 'Verified')
@else @endif
@endsection