Hello. In App\Models\Tag::articles you have it wrong: ```php return $this->belongsToMany('App\Models\Article', 'articles_tags', 'article_id', 'tag_id'); ``` you need to write: ```php return $this->belongsToMany('App\Models\Article', 'articles_tags', 'tag_id', 'article_id'); ```