Looking to hire Laravel developers? Try LaraJobs

laravel-nestedset maintained by lianhechx

Description
Nested Set Model for Laravel
Author
Last update
2017/01/24 05:08 (dev-master)
License
Links
Downloads
34

Comments
comments powered by Disqus

This is a Laravel package for working with trees in relational databases.

What are nested sets?

Nested sets or Nested Set Model is a way to effectively store hierarchical data in a relational table. From wikipedia:

The nested set model is to number the nodes according to a tree traversal, which visits each node twice, assigning numbers in the order of visiting, and at both visits. This leaves two numbers for each node, which are stored as two attributes. Querying becomes inexpensive: hierarchy membership can be tested by comparing these numbers. Updating requires renumbering and is therefore expensive.