/home/techb158/public_html/wp-content/plugins/kirki/app/Models
Edit: /home/techb158/public_html/wp-content/plugins/kirki/app/Models/CollaborationComment.php (1207B)
'integer',
'post_id' => 'integer',
'parent_id' => 'integer',
'status' => 'integer',
'meta_data' => 'json',
'comment' => 'json',
];
/**
* The replies of a top-level comment.
*/
public function replies()
{
return $this->has_many(CollaborationComment::class, 'parent_id', 'id');
}
/**
* The "seen by" rows tracking which users have read this comment.
*/
public function seen()
{
return $this->has_many(CollaborationCommentSeen::class, 'comment_id', 'id');
}
}