belongsTo('App\Models\Shop\Article'); } public function price_family() { return $this->belongsTo('App\Models\Shop\PriceFamily'); } public function price() { return $this->morphTo(); } public function scopeByArticle($query, $id) { return $query->where('article_id', $id); } public function scopeByPriceFamily($query, $id) { return $query->where('price_family_id', $id); } }