| Compte | Débit | Crédit | Solde |
|---|---|---|---|
|
{{ $item->account_id }}
{{ $item->account_name }}
|
{{ number_format($item->total_debit, 2, ',', ' ') }} € | {{ number_format($item->total_credit, 2, ',', ' ') }} € | {{ $item->balance >= 0 ? '+' : '' }}{{ number_format($item->balance, 2, ',', ' ') }} € |
| Total Classe {{ $class }} | {{ number_format($classDebit, 2, ',', ' ') }} € | {{ number_format($classCredit, 2, ',', ' ') }} € | {{ $classBalance >= 0 ? '+' : '' }}{{ number_format($classBalance, 2, ',', ' ') }} € |