*/ public function comments(): HasMany { return $this->hasMany(Comment::class); } /** * @psalm-return MorphOne */ public function image(): MorphOne { return $this->morphOne(Image::class, 'imageable'); } }