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

LISTE DES VERSEMENTS

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