@php
$leaveType = '
' . $leave->type->type_name . '';
if ($leave->status == 'approved') {
$class = 'text-light-green';
$status = __('app.approved');
} elseif ($leave->status == 'pending') {
$class = 'text-yellow';
$status = __('app.pending');
} else {
$class = 'text-red';
$status = __('app.rejected');
}
$paidStatus = '
' . $status;
$reject_reason = !is_null($leave->reject_reason) ? $leave->reject_reason : '--';
$approve_reason = !is_null($leave->approve_reason) ? $leave->approve_reason : '--';
@endphp
@lang('modules.leaves.applicantName')
@if ($leave->duration == 'half day')
@lang('app.duration')
@lang('modules.leaves.halfDay')
@if (!is_null($leave->half_day_type))
{{ ($leave->half_day_type == 'first_half') ? __('modules.leaves.firstHalf') : __('modules.leaves.secondHalf') }}
@endif
@endif
@if (!is_null($leave->manager_status_permission))
@endif
@if (!is_null($leave->approved_by))
@lang('modules.leaves.approvedBy')
@endif
@if (!is_null($leave->approved_at))
@endif
@if ($leave->status == 'rejected')
@endif
@if ($leave->status == 'approved')
@endif
@lang('app.file')
@forelse($leave->files as $file)
@if ($file->icon == 'images')
@else
@endif
@empty
@endforelse