laravel-nestedset icon indicating copy to clipboard operation
laravel-nestedset copied to clipboard

Effective tree structures in Laravel 4-8

Results 149 laravel-nestedset issues
Sort by recently updated
recently updated
newest added

How do I move the nodes For example: node 1 | --node 1.1 | --node 1.2 | --node 1.3 node 2 | --node 2.1 | --node 2.2 | --node 2.3...

I've suddenly started running into issues where the root folder (which now has an _lft value of 0, and an _rgt value of 0) forces the `assertNodeExists` method within `NodeTrait`...

using: protected function getScopeAttributes() { return [ 'company_id' ]; } the count errors always returnig 0, even if I change the lft value to a wrong value. if i remove...

**Phenomenon** With below data structure, if I use `toTree`, the items indexed with `2` will be eliminated from the result. ``` $categories = [ 0 => [ "id" => 10068,...

Currently the migration style is such that, it adds columns into existing users table. My aim is to create a separate relation table named `user_hierarchy`/`user_tree` with `user_id` as foreign key...

Can't select specific columns in `->get(['id', 'title'])` method. Always I get all fileds (`*` in select query)

Here is the code of my role model, it has a primary key `id` which is a unique string. ```php

Please Edit this Bug!!!!!!!!!!!!!

``` [ { "id": 1, "name": "Video", "children": [ { "id": 2, "name": "Workouts", "children": [ { "id": 3, "name": "How To's" }, { "id": 4, "name": "Live Workouts" },...