We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702e375 commit b2aad60Copy full SHA for b2aad60
readme.md
@@ -7,6 +7,12 @@ Belongs To Many Field for simple manage Nested relation tree. Enables attaching
7
8

9
10
+### RoadMap
11
+
12
+- [ ] Validation
13
+- [ ] Show selected categories on Detail
14
+- [ ] Ability to pass your own tree
15
16
### Installation
17
18
```bash
@@ -31,6 +37,16 @@ public function fields(Request $request)
31
37
}
32
38
```
33
39
40
+Your model should has NodeTrait form package kalnoy/nestedset see RoadMap
41
42
+```php
43
44
+class Category extends Model
45
+{
46
+ use NodeTrait;
47
+}
48
+```
49
34
50
### Options
35
51
36
52
Here are a few customization options
0 commit comments