app\models\News::tags PHP Method

tags() public method

The many-to-many relationship between news and tags.
public tags ( ) : BelongsToMany
return BelongsToMany
    public function tags()
    {
        return $this->belongsToMany('App\\Models\\Tag', 'news_tags_pivot');
    }