Sorgente (GESCON)
| Stabile |
Scala |
Interno |
Proprietario |
@forelse(($legacyUnita ?? []) as $r)
| {{ $r->cod_stabile }} |
{{ $r->scala }} |
{{ $r->interno }} |
{{ trim(($r->cognome ?? '').' '.($r->nome ?? '')) }} |
@empty
| Nessun dato sorgente disponibile |
@endforelse
Destinazione (NetGescon)
Salvataggio per-stabile
| Codice Unità |
Scala |
Interno |
Proprietario (se noto) |
@forelse(($unita ?? []) as $u)
| {{ $u->codice_unita ?? '—' }} |
{{ $u->scala ?? '—' }} |
{{ $u->interno ?? '—' }} |
@php $ownersCollection = ($u->proprietari instanceof \Illuminate\Support\Collection) ? $u->proprietari : collect($u->proprietari); $firstOwner = $ownersCollection->first(); @endphp
{{ $firstOwner->cognome ?? '—' }} |
@empty
| Nessuna unità presente |
@endforelse