/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $agentes = agente::paginate(15);
     return view('agente.index', compact('agentes'));
 }