@php $title_page = setting_item_with_lang("candidate_page_list_title"); if(!empty($custom_title_page)){ $title_page = $custom_title_page; } $translation = $row->translateOrOrigin(app()->getLocale()); @endphp

{{$row->user->getDisplayName()}}

{{$row->title}}
@php $categories = $row->getCategory(); @endphp
    @if($row->city || $row->country)
  • {{$row->city}}, {{$row->country}}
  • @endif @if($row->expected_salary)
  • {{$row->expected_salary}} {{currency_symbol()}} / {{$row->salary_type}}
  • @endif
  • {{__('Member Since')}} {{date('M d, Y', strtotime($row->user->created_at))}}
@php $url = ''; if(!empty($cv)){ $file = (new \Modules\Media\Models\MediaFile())->findById($cv->file_id); $url = asset('uploads/'.$file['file_path']); } @endphp @if($url) @if(setting_item('candidate_download_cv_required_login') && !auth()->check()) @else {{__('Download CV')}} @endif @endif
@include('Candidate::frontend.layouts.details.candidate-detail')