@extends('backoffice.layout.master') @section('setSectionTitle', __('Gestione Candidati')) @section('setSectionDescription', __('Visualizza e gestisci i tuoi candidati')) @section('setContent')
| {{ __('Nome Completo') }} | {{ __('Email') }} | {{ __('Paesi di Interesse') }} | {{ __('Stato Account') }} | {{ __('Data Registrazione') }} | {{ __('Azioni') }} |
|---|---|---|---|---|---|
| {{ $candidate->first_name }} {{ $candidate->last_name }} | {{ $candidate->refUser->email }} | @if($candidate->refCandidatesCountriesInterests->count() > 0) {{ $candidate->refCandidatesCountriesInterests->count() }} @else - @endif | @if($candidate->refUser->is_active) {{ __('Attivo') }} @else {{ __('Disattivato') }} @endif | {{ $candidate->created_at->format('d/m/Y H:i') }} | {{ __('Dettaglio') }} |