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