Missing argument 1 for App\User::follows(), called in D:\code\php\zhihu\app\User.php on line 58 and defined
//关注
public function follows($question){
return $this->belongsToMany(Question::class,'user_question')->withTimestamps();
}
public function followThis($question){
return $this->follows()->toggle($question);
}