laravel: 6.0
buam: 2.0.0-alpha1
i realized that the usaual default column names no longer work
protected $parentColumn = 'parent_id';
protected $leftColumn = 'lft';
protected $rightColumn = 'rgt';
protected $depthColumn = 'depth';
protected $orderColumn = 'name';
seems they have been changed to
protected $parentColumnName = 'parent_id';
protected $leftColumnName = 'lft';
protected $rightColumnName = 'rgt';
protected $depthColumnName = 'depth';
protected $orderColumnName = 'name';
laravel: 6.0
buam: 2.0.0-alpha1
i realized that the usaual default column names no longer work
seems they have been changed to