Skip to content

Commit 4ae707d

Browse files
Update README.md
1 parent efec6e4 commit 4ae707d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ SelectTree::make('category_id')
2929
return $query;
3030
})
3131

32-
// Here, the label 'Category' is assigned to the field.
32+
// The label 'Category' is assigned to the field.
3333
->label(__('Category'))
3434

35-
// By calling this function, it ensures that only leaf nodes can be selected while preventing the selection of groups.
35+
// Ensures that only leaf nodes can be selected while preventing the selection of groups.
3636
->disabledBranchNode()
3737

38-
// Enabling this feature will show the count of children alongside the group's name.
38+
// Show the count of children alongside the group's name.
3939
->withCount()
4040

41-
// By calling this function, it activates the search functionality for the SelectTree.
41+
// Activates the search functionality for the SelectTree.
4242
->searchable()
4343

44-
// Using this function, the SelectTree is disabled. (You can also use: ->disabledOn(''))
44+
// The tree is disabled. (You can also use: ->disabledOn(''))
4545
->disabled(),
4646
```
4747
## Video

0 commit comments

Comments
 (0)