belongsTo('App\Models\Shop\Article'); } public function ArticleAttributes() { return $this->hasMany('App\Models\Shop\ArticleAttribute'); } public function scopeByArticle($query, $id) { return $query->where('article_id', $id); } }