@extends('layouts.admin') @section('content')
LISTE DES COMMERCIALES
@foreach($commerciales as $c)
@if($c->photo) @else @endif

{{ $c->name }}

{{ $c->email }}
@foreach($montant as $user => $total) @if($user == $c->id)

{{ number_format($total, 0, '', ' ') }} FCFA

{{ number_format($total, 0, '', ' ') }} FCFA
@endif @endforeach

@endforeach
@endsection @section('scripts') @parent @endsection