protected function getInforActiveAndFollow()
 {
     $data = [];
     $data['active-img'] = ImageServiceFacade::countTotalPhoto($this->user_id);
     $data['active-follow'] = FollowServiceFacade::countUserFollow($this->user_id);
     //mình theo dõi
     $data['active-follower'] = FollowServiceFacade::countFollower($this->user_id);
     //theo dõi mình
     $data['follow'] = FollowServiceFacade::getFollow($this->user_id);
     return $data;
 }