@extends('backoffice.layout.master') @section('setSectionTitle', __('Dashboard')) @section('setContent')

{{ __('Benvenuto, :name!', ['name' => $expert->first_name]) }}

{{ __('Panoramica della tua attività come esperto') }}

{{ $stats['total_candidates'] }}

{{ __('Candidati Seguiti') }}

{{ $stats['total_news'] }}

{{ __('News Pubblicate') }}

{{ $stats['countries_interests'] }}

{{ __('Paesi di Interesse') }}

{{ $stats['export_sectors'] }}

{{ __('Settori Export') }}

@if($recentCandidates->count() > 0)
{{ __('Ultimi Candidati') }}
{{ __('Vedi tutti') }}
@foreach($recentCandidates as $candidate)
{{ $candidate->first_name }} {{ $candidate->last_name }}
{{ $candidate->refUser->email }}
{{ $candidate->created_at->diffForHumans() }}
@endforeach
@endif
@if($recentNews->count() > 0)
{{ __('Ultime News') }}
{{ __('Vedi tutte') }}
@foreach($recentNews as $news)
{{ $news->title }}
{{ $news->created_at->format('d/m/Y H:i') }}
@endforeach
@endif
@endsection