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