Nesting Comments Yii2
Nesting Comments Yii2 I have a comment table, like below: +-----------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----------+--------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | user_id | int(11) | NO | | NULL | | | parent_id | int(11) | NO | | 0 | | | post_id | int(11) | NO | | NULL | | | body | text | NO | | NULL | | | date | datetime | NO | | NULL | | | status | tinyint(1) | NO | | 0 | | +-----------+--------------+------+-----+---------+----------------+ Comment parent_id by defautl is 0, if comment is answered, parent id insert in parent_id column. And make a relation with User Table with below code: public function getPosts() { ...