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

Anteprima occupazione

Dati letti da gescon_import.condomin per un controllo rapido proprietari/inquilini per stabile.

Torna al pannello Import
@if(!$stagingDisponibile)
Tabella condomin non presente nella connessione gescon_import.
@else
@forelse($records as $row) @empty @endforelse
Codice Stabile Cognome Nome Tipo Unità Scala Piano Interno Email Telefono
{{ $row->cod_cond ?? '-' }} {{ $row->cod_stabile ?? '-' }} {{ $row->cognome ?? '-' }} {{ $row->nome ?? '-' }} {{ $row->tipo ?? ($row->tipo_sogg ?? '-') }} {{ $row->cod_unita ?? '-' }} {{ $row->scala ?? '-' }} {{ $row->piano ?? '-' }} {{ $row->interno ?? '-' }} {{ $row->email ?? $row->mail ?? '-' }} {{ $row->telefono ?? $row->cellulare ?? '-' }}
Nessun dato disponibile per questo stabile.
@endif
@endsection