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

LISTE DES DOSSIERS

@foreach($dossiers as $d) @endforeach
Date Client Site Montant Versé Restant Agent Commercial Action
{{ $d->id }} {{ $d->date }} {{ $d->client_prenom .' '. $d->client_nom }} {{ $d->site }} {{ $d->montant_verse }} {{ $d->montant_contrat - $d->montant_verse > 0 ? $d->montant_contrat - $d->montant_verse : 0 }} {{ $d->agent_prenom . ' '. $d->agent_nom }}       @if(Auth::user()->type == 'Super Administrateur') @endif
@endsection