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

LISTE DES VERSEMENTS

@foreach($versements as $v) @endforeach
Clients Montant Date Action
{{ $v->prenom . ' '. $v->nom }} {{ $v->montant }} {{ $v->date }}   @if(Auth::user()->type == 'Super Administrateur') @endif  
@endsection