So you want to allow for replies to comments on reviews? This is definitely possible and what's known as a self-referential relationship.
In your review_comments table, you'd define a nullable column parent_comment_id (or parent_id) which stores the ID of the comment being replied to. You could then make the review_id column nullable too since a reply would be related to the review via the parent comment.
As for nesting, this particular setup would allow for infinite nesting. This means you could have replies to replies, similar to what platforms like Reddit allow. However, this can become a bit complicated. Especially when using Livewire, where it's generally recommended to keep nesting to a minimum (if you have each comment as a separate component).
For this, you'd want to implement some sort of check or validation to ensure that replies can only be posted to parent or "top-level" comments. This would yield a system like Laracasts or YouTube (at least from the frontend where replies are only nested at one level).
This basic tutorial/example should give you a general starting point/overview.