@extends('admin.layouts.netgescon') @section('title', 'GESCON Import · Anagrafiche importate') @section('breadcrumb') GESCON Import Anagrafiche importate @endsection @section('content')
@include('components.layout.alerts')

Anagrafiche importate

Fonte: {{ $source === 'rubrica_universale' ? 'Rubrica Universale' : 'Persone legacy' }}. Totale mostrato: {{ $persone->total() }}.

Torna al pannello Import
@forelse($persone as $p) @php $nomeCompleto = $p->ragione_sociale ?? trim(($p->cognome ?? '').' '.($p->nome ?? '')); $tipo = $p->tipo_contatto ?? ($p->tipologia ?? ''); $email = $p->email ?? $p->pec ?? $p->email_principale ?? null; $telefono = $p->telefono_ufficio ?? $p->telefono_cellulare ?? $p->telefono_principale ?? null; $categoria = $p->categoria ?? ($p->tipo ?? ''); $updated = $p->updated_at ?? $p->created_at ?? null; @endphp @empty @endforelse
Nome / Ragione sociale Tipo Contatti Categoria Ultimo aggiornamento
{{ $nomeCompleto ?: 'Soggetto senza nome' }}
@if(!empty($p->codice_interno))
Codice interno: {{ $p->codice_interno }}
@elseif(!empty($p->id))
ID: {{ $p->id }}
@endif
{{ $tipo ?: '—' }}
{{ $email ?: '—' }}
{{ $telefono ?: '' }}
{{ $categoria ?: '—' }} {{ $updated ? $updated->format('d/m/Y H:i') : '—' }}
Nessuna anagrafica trovata.
{{ $persone->links() }}
@endsection