Download the PHP package robertmarney/lara-hierarchial-collections without Composer
On this page you can find all versions of the php package robertmarney/lara-hierarchial-collections. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download robertmarney/lara-hierarchial-collections
More information about robertmarney/lara-hierarchial-collections
Files in robertmarney/lara-hierarchial-collections
Package lara-hierarchial-collections
Short Description Transforms flat collections to a nested hierarchy
License MIT
Homepage https://github.com/robertmarney/lara-hierarchial-collections
Informations about the package lara-hierarchial-collections
Transforms flat collections to a nested hierarchy
Package to extend collections of hierarchical data to organize data into nodes according to the hierarchy.
The package supports unlimited starting nodes, and has been tested to 10 levels deep.
Use Cases:
- Organizational Charts
- Chart of Accounts
Requirements:
- Illuminate Collections 8+/9+/10+/11+/12+ (Packaged in Laravel 8+/9+/10+/11+/12+)
- PHP 8.0 / 8.1 / 8.2 / 8.3 / 8.4
Installation
You can install the package via composer:
Basic Usage,
The tool accepts Support Collections or Eloquent Collections, within the collection we expect Eloquent Models or StdClass
objects.
Assuming a primary key of id
and parent identifier of parent_id
:
Customizing Local Key:
If you are not using ids (eg uuid) you can override the local comparison value:
Customizing Parent Key:
Similiarly, you can change the parent key if the local relationship is not formed on the default parent_id
Providing the relationName
property will change the collection name where children will be placed
Collection Macro (Laravel Only):
The package also provides a collection macro to easily convert collections to a hierarchy:
Helper Methods:
Ancestors
Descendants
Siblings
Depth
Fluent Comparison
Legacy Usage (Deprecated)
Customizing Local Key:
If you are not using ids (eg uuid) you can override the local comparison value:
Customizing Parent Key:
Similiarly, you can change the parent key if the local relationship is not formed on the default parent_id
Providing the relationName
property will change the collection name where children will be placed
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
- Robert Marney
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of lara-hierarchial-collections with dependencies
illuminate/collections Version ^8.0||^9.0||^10.0||^11.0||^12.0
illuminate/contracts Version ^8.0||^9.0||^10.0||^11.0||^12.0