@vite(['resources/css/app.css', 'resources/js/app.js'])
Inserisci il totale letto e allega una foto del contatore. Il sistema calcola il consumo rispetto alla lettura precedente.
Nessuna lettura disponibile.
@else| Data | Unità | Utenza | Precedente | Totale letto | Consumo | Foto |
|---|---|---|---|---|---|---|
| {{ optional($lettura->periodo_al)->format('d/m/Y') }} | {{ $lettura->unitaImmobiliare->scala ?? 'S?' }}/{{ $lettura->unitaImmobiliare->interno ?? 'I?' }} | {{ $lettura->servizio->nome ?? ('#' . (int) $lettura->stabile_servizio_id) }} | {{ $lettura->lettura_inizio !== null ? number_format((float) $lettura->lettura_inizio, 3, ',', '.') : '—' }} | {{ $lettura->lettura_fine !== null ? number_format((float) $lettura->lettura_fine, 3, ',', '.') : '—' }} | {{ $lettura->consumo_valore !== null ? number_format((float) $lettura->consumo_valore, 3, ',', '.') . ' mc' : '—' }} | @if($foto) Apri foto @else — @endif |