@extends('dashboard')
@section('content')
NOUVEAU REPRESENTANT
Nom
|
Prenom
|
Contact
|
Numero CNI/Passeport
|
Action
|
@foreach($rep_clients as $rp)
{{ $rp->nom }}
|
{{ $rp->prenom }}
|
{{ $rp->telephone }}
|
{{ $rp->cni_passeport }}
|
@if(Auth::user()->type == 'Super Administrateur')
@endif
|
@endforeach
@endsection