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