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