Corcel\Comment::findByPostId PHP Method

findByPostId() public static method

Find a comment by post ID
public static findByPostId ( integer $postId ) : Comment
$postId integer
return Comment
    public static function findByPostId($postId)
    {
        $instance = new static();
        return $instance->where('comment_post_ID', $postId)->get();
    }