@forelse($contributions as $contribution)
| {{ $contribution->payment_date ? $contribution->payment_date->format('d/m/Y') : '-' }} |
{{ $contribution->user->name ?? ($contribution->user->first_name . ' ' . $contribution->user->last_name) }} |
{{ $contribution->project->name ?? '-' }} |
{{ $contribution->account->name ?? '-' }} |
{{ number_format($contribution->amount, 0, ',', ' ') }} {{ $currency }} |
@if($contribution->status === 'paye')
Payé
@else
En attente
@endif
|
@empty
| Aucune cotisation trouvée. |
@endforelse