Corcel\Comment::findByPostId PHP 메소드

findByPostId() 공개 정적인 메소드

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