|
Total entrées
{{ number_format($summary['total_entrees'], 2, ',', ' ') }} TND
|
Total sorties
{{ number_format($summary['total_sorties'], 2, ',', ' ') }} TND
|
Solde actuel
{{ number_format($summary['current_solde'], 2, ',', ' ') }} TND
|
| Date | Désignation | Entrée | Sortie | Solde |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($r['date'])->format('d/m/Y') }} | {{ $r['designation'] }} | {{ $r['type'] === 'entree' ? number_format($r['amount_tnd'], 2, ',', ' ') . ' TND' : '' }} | {{ $r['type'] === 'sortie' ? number_format($r['amount_tnd'], 2, ',', ' ') . ' TND' : '' }} | {{ number_format($r['solde'] ?? 0, 2, ',', ' ') }} TND |
| Aucune ligne | ||||