/**
  * Display a listing of the anexo.
  *
  * @return Response
  */
 public function index()
 {
     $anexos = $this->anexoRepository->all();
     return view('anexos.index')->with('anexos', $anexos);
 }
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $repositorios = $this->repositorioRepository->all();
     return view('repositorios.index')->with('repositorios', $repositorios);
 }