belongsTo(Specie::class); } public function Articles(): MorphMany { return $this->morphMany(Article::class, 'product'); } public function tags(): MorphToMany { return $this->morphToMany(Tag::class, 'taggable'); } }