Baum\Node::descendantsAndSelf PHP 메소드

descendantsAndSelf() 공개 메소드

Scope targeting itself and all of its nested children.
public descendantsAndSelf ( ) : Builder
리턴 Illuminate\Database\Query\Builder
    public function descendantsAndSelf()
    {
        return $this->newNestedSetQuery()->where($this->getLeftColumnName(), '>=', $this->getLeft())->where($this->getLeftColumnName(), '<', $this->getRight());
    }