belongsTo(User::class)->withDefault([ 'name' => 'Guest Author', ]); } /** * Get the comments for the post. * * @return HasMany */ public function comments(): HasMany { return $this->hasMany(Comment::class); } }