/**
  *Show list images user follow
  */
 public function showPhotoUserFollow(Request $request)
 {
     $all_image = ImageServiceFacade::getAllPhotoUserFollow($this->user_id);
     return view("follow-page")->with(['data' => $all_image]);
 }