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