Riepilogo Compensi

Totale Compensi
{{ number_format($this->getTotaleCompensi(), 2, ',', '.') }} €
{{ $this->getContrattiCount() }} contratti
Fatturato Totale
{{ number_format($this->getTotaleFatture(), 2, ',', '.') }} €
{{ $this->getNumeroFatture() }} fatture
Importo Pagato
{{ number_format($this->getTotalePagato(), 2, ',', '.') }} €
{{ $this->getNumeroFatturePagate() }} fatture pagate
Da Pagare
{{ number_format($this->getTotaleRimanente(), 2, ',', '.') }} €
{{ $this->getNumeroFattureDaPagare() }} fatture da pagare
Completamento
{{ $this->getPercentualeCompletamento() }}%
@if($this->getNumeroFatture() > 0)

Elenco Fatture

@foreach($this->getFatture() as $fattura) @endforeach
Contratto Numero Fattura Data Emissione Importo Importo Pagato Stato
{{ $fattura->contratto->descrizione ?? 'N/A' }} {{ $fattura->numero_fattura }} {{ $fattura->data_emissione ? date('d/m/Y', strtotime($fattura->data_emissione)) : '' }} {{ number_format($fattura->importo, 2, ',', '.') }} € {{ number_format($fattura->importo_pagato, 2, ',', '.') }} € {{ $fattura->stato }}
@else
Nessuna fattura registrata.
@endif