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