diff --git a/src/Controllers/CommentController.php b/src/Controllers/CommentController.php index 88581f67..95fd1a4a 100644 --- a/src/Controllers/CommentController.php +++ b/src/Controllers/CommentController.php @@ -64,7 +64,7 @@ class CommentController extends AbstractController $data[] = [ 'post' => $this->postViewProxy->fromEntity($post), 'comments' => $this->commentViewProxy->fromArray( - $this->commentService->getByPost($post), + array_reverse($this->commentService->getByPost($post)), $this->getCommentsFetchConfig()), ]; }