| Cotisations Perçues {{ number_format($totalContributions, 0, ',', ' ') }} {{ $currency }} | En Attente {{ number_format($totalPending, 0, ',', ' ') }} {{ $currency }} | Total Crédits {{ number_format($totalCredits, 0, ',', ' ') }} {{ $currency }} | Total Débits {{ number_format($totalDebits, 0, ',', ' ') }} {{ $currency }} |
| Date | Membre | Projet | Compte | Montant |
|---|---|---|---|---|
| {{ $item->payment_date ? $item->payment_date->format('d/m/Y') : '-' }} | {{ $item->user->name ?? ($item->user->first_name . ' ' . $item->user->last_name) }} | {{ $item->project->name ?? '-' }} | {{ $item->account->name ?? '-' }} | {{ number_format($item->amount, 0, ',', ' ') }} {{ $currency }} |
| Aucune cotisation trouvée | ||||
| Date | Type | Description | Compte | Montant |
|---|---|---|---|---|
| {{ $item->date ? $item->date->format('d/m/Y') : '-' }} | {{ ucfirst($item->type) }} | {{ $item->description }} | {{ $item->account->name ?? '-' }} | {{ $item->type === 'credit' ? '+' : '-' }} {{ number_format($item->amount, 0, ',', ' ') }} {{ $currency }} |
| Aucune opération trouvée | ||||