我们如何在关注者列表中查找我们是否也关注该用户?
//此用户关注的用户 公共功能following(){ 返回$ this-> belongsToMany(User :: class,'followers','follower_id','following_id'); }
//跟在该用户之后的用户 公共职能followers(){ 返回$ this-> belongsToMany(User :: class,'followers','following_id','follower_id'); }