Baum\Extensions\Eloquent\Model::getFreshInstance PHP Метод

getFreshInstance() защищенный Метод

Returns a fresh instance from the database.
protected getFreshInstance ( ) : Node
Результат Baum\Node
    protected function getFreshInstance()
    {
        if ($this->areSoftDeletesEnabled()) {
            return static::withTrashed()->find($this->getKey());
        }
        return static::find($this->getKey());
    }