| Codice | {{ $individuo->codice_id }} | Cognome | {{ $individuo->cognome }} |
|---|---|---|---|
| Nome | {{ $individuo->nome }} | Genere | {{ $individuo->genere === 'M' ? 'Maschile' : ($individuo->genere === 'F' ? 'Femminile' : '-') }} |
| Data di nascita | {{ $individuo->data_nascita ? $individuo->data_nascita->format('d/m/Y') : '-' }} | Luogo di nascita | {{ $individuo->città ?: '-' }} |
| Tipo | @if($individuo->tipo_documento === 'carta_identita') Carta d'Identità @elseif($individuo->tipo_documento === 'patente') Patente @else {{ $individuo->tipo_documento }} @endif | Numero | {{ $individuo->numero_documento }} |
|---|---|---|---|
| Scadenza | @if($individuo->scadenza_documento) @if($individuo->scadenza_documento->isPast()) SCADUTO @else {{ $individuo->scadenza_documento->format('d/m/Y') }} @endif @else - @endif |
Nessun documento registrato
@endif| Tipo | Valore | Etichetta | Primario |
|---|---|---|---|
| @switch($contatto->tipo) @case('email') Email @break @case('telefono') Telefono @break @case('cellulare') Cellulare @break @default {{ $contatto->tipo }} @endswitch | {{ $contatto->valore }} | {{ $contatto->etichetta ?: '-' }} | {{ $contatto->is_primary ? '✓' : '-' }} |
Nessun contatto registrato
@endif| Gruppo | Ruolo | Data Adesione |
|---|---|---|
| {{ $gruppo->nome }} | {{ $gruppo->pivot->ruolo_nel_gruppo ?: '-' }} | {{ $gruppo->pivot->data_adesione ? \Carbon\Carbon::parse($gruppo->pivot->data_adesione)->format('d/m/Y') : '-' }} |
Nessun gruppo associato
@endif| Nome | Tipologia | Dimensione | Data Upload |
|---|---|---|---|
| {{ $documento->nome }} | {{ $documento->tipologia }} | {{ $documento->dimensione ? number_format($documento->dimensione / 1024, 1) . ' KB' : '-' }} | {{ $documento->created_at->format('d/m/Y') }} |
Nessun documento caricato
@endif| Evento | Data | Tipo Ricorrenza |
|---|---|---|
| {{ $evento->nome }} | {{ $evento->data_specifica ? $evento->data_specifica->format('d/m/Y') : '-' }} | {{ $evento->tipo_recorrenza ?: '-' }} |
Nessun evento assegnato come responsabile
@endif{{ $individuo->note }}