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();
    }