belongsTo('App\Models\Category'); } //与标签多对多关联 public function tags() { return $this->belongsToMany('App\Models\Tag','article_tag','article_id','tag_id'); } }