Corcel\Comment::findByPostId PHP Méthode

findByPostId() public static méthode

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