{{__('frontend.must_add_experience')}}
@foreach ($resume->candidateExperiences->where('status', 1) as $exp)
@php
if ($exp->in_process and $exp->in_process != 0) {
$end_date = "present";
} else {
$end_date = $exp->end_date ? \Carbon\Carbon::parse($exp->end_date)->format('Y') : null;
}
@endphp
{{$exp->job_title}}
{{$exp->name}}
@php
$endDateText = isset($end_date) ? $end_date : "";
@endphp
{{ \Carbon\Carbon::parse($exp->start_date)->format('Y') . ' - ' . $endDateText }}
{{ $exp->job_description}}
-
{{__('frontend.edit')}}
-
{{__('frontend.delete')}}
@endforeach