@extends('backoffice.layout.master') @section('setSectionTitle', __('Dettaglio Corsista')) @section('setSectionDescription', $candidate->first_name . ' ' . $candidate->last_name) @section('setContent')
| {{ __('Email') }}: | {{ $candidate->refUser->email ?? '-' }} |
|---|---|
| {{ __('Stato') }}: | {{ $candidate->refUser->is_active ? __('Attivo') : __('Non attivo') }} |
| {{ __('Nome') }}: | {{ $candidate->first_name }} |
|---|---|
| {{ __('Cognome') }}: | {{ $candidate->last_name }} |
| {{ __('Codice Fiscale') }}: | {{ $candidate->fiscal_code ?? '-' }} |
| {{ __('Data di Nascita') }}: | {{ $candidate->birth_date->format('d/m/Y') ? $candidate->birth_date->format('d/m/Y') : '-' }} |
| {{ __('Luogo di Nascita') }}: | {{ $candidate->birth_city ?? '-' }} @if($candidate->refLocationCountry) ({{ $candidate->refLocationCountry->name }}) @endif |
| {{ __('Cittadinanza') }}: | {{ $candidate->refLocationNationality->name ?? '-' }} |
| {{ __('Telefono') }}: | {{ $candidate->phone ?? '-' }} |
| {{ __('Via') }}: | {{ $candidate->refAddress->street ?? '-' }} |
|---|---|
| {{ __('Città') }}: | {{ $candidate->refAddress->city ?? '-' }} |
| {{ __('Provincia') }}: | {{ $candidate->refAddress->province ?? '-' }} |
| {{ __('Regione') }}: | {{ $candidate->refAddress->region ?? '-' }} |
| {{ __('CAP') }}: | {{ $candidate->refAddress->postal_code ?? '-' }} |
| {{ __('Paese') }}: | {{ $candidate->refAddress->refLocationCountry->name ?? '-' }} |
{{ __('Nessun indirizzo registrato') }}
@endif| {{ __('Corso') }} | {{ __('Sessione') }} | {{ __('Stato') }} | {{ __('Moduli completati') }} | {{ __('Azioni') }} |
|---|---|---|---|---|
| {{ $enrollment->refSessionCourse->refCourse->name }} | {{ $enrollment->refSessionCourse->start_date->format('d/m/Y') }} @if($enrollment->refSessionCourse->end_date) - {{ $enrollment->refSessionCourse->end_date->format('d/m/Y') }} @endif | @php $statusColors = [ 'SCHEDULED' => 'primary', 'ONGOING' => 'success', 'COMPLETED' => 'secondary', 'CANCELLED' => 'danger' ]; $statusLabels = [ 'SCHEDULED' => __('Programmata'), 'ONGOING' => __('In corso'), 'COMPLETED' => __('Completata'), 'CANCELLED' => __('Annullata') ]; @endphp {{ $statusLabels[$enrollment->refSessionCourse->status] ?? $enrollment->refSessionCourse->status }} | {{ $enrollment->completed_modules_count }} / {{ $enrollment->total_modules_count }} | @if($allowsActions) @endif |
{{ __('Il corsista non è iscritto a nessun corso.') }}
| {{ __('Posizione') }} | {{ __('Azienda') }} | {{ __('Categoria') }} | {{ __('Sede') }} | {{ __('Data Candidatura') }} |
|---|---|---|---|---|
| {{ $application->refJob->position }} | {{ $application->refJob->refOrganization->name }} | @if($application->refJob->refJobsCategory) {{ $application->refJob->refJobsCategory->name }} @else - @endif | @if($application->refJob->refOrganizationsSite) {{ $application->refJob->refOrganizationsSite->refAddress->city ?? '-' }} @else - @endif | {{ $application->created_at }} |
{{ __('Nessuna candidatura effettuata.') }}