Baum\Node::getOthersAtSameDepth PHP 메소드

getOthersAtSameDepth() 공개 메소드

Retrieve all other nodes at the same depth,.
public getOthersAtSameDepth ( ) : Illuminate\Database\Eloquent\Collection
리턴 Illuminate\Database\Eloquent\Collection
    public function getOthersAtSameDepth()
    {
        return $this->newNestedSetQuery()->where($this->getDepthColumnName(), '=', $this->getDepth())->withoutSelf();
    }