@extends('dashboard')
@section('content')
NOUVEAU AGENT
Nom
|
Prenom
|
Telephone
|
Email
|
Action
|
@foreach($agents as $a)
{{ $a->nom }}
|
{{ $a->prenom }}
|
{{ $a->telephone }}
|
{{ $a->email }}
|
@if(Auth::user()->type == 'Super Administrateur')
@endif
|
@endforeach
@endsection