我有两个表关注者和用户...... 粉丝表有粉丝和粉丝。现在我想为用户检索关注者/关注者。
<pre></pre>
我怎样才能做到这一点?
答案 0 :(得分:1)
首先,您需要在User类中定义多对多关系,这将使用中间关注者表:
#!/bin/bash
while true; do
line=''
read line
if [ -z "$line" ]; then
break
fi
echo "$line"
done
现在,您应该只需访问以下内容即可获得给定用户的关注者列表:
public function followers() {
$this->belongsToMany(User::class, 'followers', 'followee_id', 'follower_id');
}