/**
  * Display a listing of the Vocabulary.
  * GET|HEAD /vocabularies
  *
  * @return Response
  */
 public function index()
 {
     $vocabularies = $this->vocabularyRepository->all();
     return $this->sendResponse($vocabularies->toArray(), "Vocabularies retrieved successfully");
 }