@if(session('success'))
{{ session('success') }}
@endif

Table des cotisations

@can('create cotisation') Ajouter cotisation @endcan
@forelse ($cotisations as $cotisation) @empty @endforelse
N° du chalet Nom et Prénom Contact Montant Date de paiement Année Reçu Status Paiement Status validation Commentaire Actions
{{ $cotisation->user->numero_chalet }} {{ $cotisation->user->lastname }} {{ $cotisation->user->name }} {{ $cotisation->user->numero_de_telephone }} {{ $cotisation->montant }} DH {{ $cotisation->date_paiement }} @if(is_object($cotisation->annee)) {{ $cotisation->annee->annee }} @elseif($cotisation->annee) {{ App\Models\Annee::find($cotisation->annee)->annee }} @else - @endif @if($cotisation->recu_paiement) Reçu @else - @endif {{ $cotisation->statut ? $cotisation->statut->nom : $cotisation->statut_paiement }} @if($cotisation->statut_validation == 'Validé') Validé @elseif($cotisation->statut_validation == 'Non validé') Non validé @elseif($cotisation->statut_validation == 'En attente') En attente @else - @endif {{ $cotisation->commentaire ?? '-' }}
@can('edit cotisation') @endcan @can('delete cotisation')
@csrf @method('DELETE')
@endcan
Aucune cotisation trouvée
{{ $cotisations->links() }}