| Date | Type | Compte | Description / Référence | Montant |
|---|---|---|---|---|
| {{ $transaction->date->format('d/m/Y') }} | {{ $transaction->type === 'credit' ? 'Crédit' : 'Débit' }} | {{ $transaction->account->name }} |
{{ $transaction->description }}
@if($transaction->reference)
Réf: {{ $transaction->reference }} @endif |
{{ $transaction->type === 'credit' ? '+' : '-' }} {{ \App\Models\Setting::format($transaction->amount) }} |
| Total Crédits (+) | {{ \App\Models\Setting::format($totalCredit) }} |
|---|---|
| Total Débits (-) | {{ \App\Models\Setting::format($totalDebit) }} |
| Solde Période | {{ \App\Models\Setting::format($totalCredit - $totalDebit) }} |