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

LISTE DES RESTANTS A VERSER

@foreach($versements as $v) @foreach($dossiers as $d) @if($v->dossier_id == $d->id) @endif @endforeach @endforeach
Clients Parcelle Montant Restant
{{ $d->prenom . ' '. $d->nom }} {{ $d->numero . ' ' . $d->surface . ' m²' }} {{ $d->montant - $v->total}}
@endsection