问题

issue morphmany to comments:

    public function comments()
    {
        return $this->morphMany(Comment::class, 'commentable');
    }
}

但是 comment 字段里的 commentable_type 的在表里填充的名称太长太丑陋了,可以通过 morphMap 来定义, 放在 ModelServiceProvider 的 register 里:

    protected function registerMorphMap()
    {
         $this->morphMap([
             'issue-feedbacks' => \xx\IssueFeedback\Models\issue-feedback::class,
         ]);
    }