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