Baum\Node::descendantsAndSelf PHP Method

descendantsAndSelf() public method

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