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