/**
  * Display a listing of the ElementPropertyHistory.
  *
  * @return Response
  */
 public function index()
 {
     $elementPropertyHistories = $this->elementPropertyHistoryRepository->paginate(10);
     return view('elementPropertyHistories.index')->with('elementPropertyHistories', $elementPropertyHistories);
 }