File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments