| Codice | {{ $ind->codice_id }} | Genere | {{ $ind->genere === 'M' ? 'Maschile' : ($ind->genere === 'F' ? 'Femminile' : '-') }} |
|---|---|---|---|
| Data di nascita | {{ $ind->data_nascita ? $ind->data_nascita->format('d/m/Y') : '-' }} | Luogo di nascita | {{ $ind->città ?: '-' }} |
| Tipo | @if($ind->tipo_documento === 'carta_identita') Carta d'Identità @elseif($ind->tipo_documento === 'patente') Patente @else {{ $ind->tipo_documento }} @endif | Numero | {{ $ind->numero_documento }} |
|---|---|---|---|
| Scadenza | @if($ind->scadenza_documento) @if($ind->scadenza_documento->isPast()) SCADUTO @else {{ $ind->scadenza_documento->format('d/m/Y') }} @endif @else - @endif |
Nessun documento registrato
@endif| Tipo | Valore | Etichetta |
|---|---|---|
| @switch($contatto->tipo) @case('email') Email @break @case('telefono') Telefono @break @case('cellulare') Cellulare @break @default {{ $contatto->tipo }} @endswitch | {{ $contatto->valore }} | {{ $contatto->etichetta ?: '-' }} |
Nessun contatto registrato
@endif| Gruppo | Ruolo |
|---|---|
| {{ $gruppo->nome }} | {{ $gruppo->pivot->ruolo_nel_gruppo ?: '-' }} |
Nessun gruppo associato
@endif