@extends('layouts.app') @section('title', 'Buscar Candidatos') @section('content')
Encuentra candidatos ideales para posiciones específicas
| Candidato | Experiencia | Habilidades | Posiciones de Interés | Disponibilidad | Salario Esperado | Ubicación | Acciones |
|---|---|---|---|---|---|---|---|
|
@if($candidate->profile_picture)
{{ strtoupper(substr($candidate->first_name, 0, 1)) }}{{ strtoupper(substr($candidate->last_name, 0, 1)) }}
@endif
{{ $candidate->full_name }}
{{ $candidate->email }}
@if($candidate->phone)
{{ $candidate->phone }}
@endif
|
{{ $candidate->getTotalExperienceYears() }} años
@php
$currentJob = $candidate->current_work_experience;
@endphp
@if($currentJob)
{{ $currentJob->position }}
{{ $currentJob->company_name }}
@endif
|
@php
$topSkills = $candidate->skills()->orderBy('level', 'desc')->limit(3)->get();
@endphp
@foreach($topSkills as $skill)
{{ $skill->skill_name }}
@endforeach
@if($candidate->skills()->count() > 3)
+{{ $candidate->skills()->count() - 3 }} más
@endif
|
@php
$interests = $candidate->positionInterests()->limit(2)->get();
@endphp
@foreach($interests as $interest)
{{ $interest->position_title }}
@if($interest->department)
@endforeach
@if($candidate->positionInterests()->count() > 2)
+{{ $candidate->positionInterests()->count() - 2 }} más
@endif
{{ $interest->department }} @endif |
@php
$availabilityLabels = [
'immediate' => 'Inmediata',
'1_week' => '1 Semana',
'2_weeks' => '2 Semanas',
'1_month' => '1 Mes',
'more_than_month' => 'Más de 1 mes'
];
@endphp
{{ $availabilityLabels[$candidate->availability] ?? 'No especificada' }}
@if($candidate->willing_to_relocate)
Dispuesto a reubicarse @endif |
@if($candidate->expected_salary) {{ number_format($candidate->expected_salary, 2) }} {{ $candidate->salary_currency }} @else No especificado @endif | @if($candidate->city && $candidate->country) {{ $candidate->city }}, {{ $candidate->country }} @else No especificada @endif |
Intenta ajustar los criterios de búsqueda o agregar nuevos candidatos.
Agregar Candidato