@extends('dashboard') @section('content')

LISTE DES VERSEMENTS

@foreach($versements as $v) @endforeach
Client Montant Mode de paiement Fichier Mois Date Action
{{$v->prenom .' '. $v->nom}} {{ $v->montant }} {{ $v->mode_paiement }} {{ $v->fichier }} {{ $v->mois }} {{ $v->updated_at }}   @if(Auth::user()->type == 'Super Administrateur') @endif
@endsection