@extends('backoffice.layout.master') @section('setSectionTitle', __('Gestione Esperti')) @section('setSectionDescription', __('Visualizza e gestisci tutti gli esperti della piattaforma')) @section('setContent')
{{ __('Crea Nuovo Esperto') }}
@csrf
{{ __('Lista Esperti') }}
@if($experts->count() > 0)
@foreach($experts as $expert) @endforeach
{{ __('Nome Completo') }} {{ __('Email') }} {{ __('Paesi di Interesse') }} {{ __('Settori Export') }} {{ __('Stato Account') }} {{ __('Data Registrazione') }} {{ __('Azioni') }}
{{ $expert->first_name }} {{ $expert->last_name }} {{ $expert->refUser->email }} @if($expert->refExpertsCountriesInterests->count() > 0) {{ $expert->refExpertsCountriesInterests->count() }} @else - @endif @if($expert->refExpertsKeyExportSectors->count() > 0) {{ $expert->refExpertsKeyExportSectors->count() }} @else - @endif @if($expert->refUser->is_active) {{ __('Attivo') }} @else {{ __('Disattivato') }} @endif {{ $expert->created_at->format('d/m/Y H:i') }} {{ __('Dettaglio') }}
@if($experts->hasPages())
{{ $experts->links() }}
@endif @else
{{ __('Nessun esperto presente nel sistema.') }}
@endif
@endsection