laravel-blogger icon indicating copy to clipboard operation
laravel-blogger copied to clipboard

Error in code

Open mgrechanik opened this issue 3 years ago • 0 comments

Hello. In App\Models\Tag::articles you have it wrong:

return $this->belongsToMany('App\Models\Article', 'articles_tags', 'article_id', 'tag_id');

you need to write:

return $this->belongsToMany('App\Models\Article', 'articles_tags', 'tag_id', 'article_id');

mgrechanik avatar Aug 31 '21 06:08 mgrechanik