Package Data | |
---|---|
Maintainer Username: | ThomHurks |
Maintainer Contact: | thomhurks@gmail.com (Thom Hurks) |
Package Create Date: | 2017-03-21 |
Package Last Update: | 2017-03-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:22:52 |
Package Statistics | |
---|---|
Total Downloads: | 83 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Extensions for Laravel's Collection class. Notably groupByMultiple for grouping collections on multiple fields instead of just one.
Example:
A | B | C | D ------------ | ------------- | ------------- | ------------- foo | bar | baz | thud foo | garply | corge | plugh foo | bar | corge | thud foo | bar | corge | waldo qux | garply | xyzzy | fred qux | grault | garply | quuz
By calling myCollection->groupBy(['A', 'B', 'C', 'D']) the result would become:
Cross compatibility The groupByMultiple function is somewhat compatible with Laravel's original groupBy in that it functions in the same way if you pass as first argument something that is not an array, so just like groupBy you can call it with a string or a closure. The function just puts the first argument in an array if it isn't one. If you try to pass a callable as an array, so ["Foo", "Bar"] where Foo::Bar() is a valid method, then of course the groupByMultiple function will just attempt to group on the key "Foo" first and "Bar" second; this is the main incompatibility with groupBy(). Of course you can pass an array with a callable in it, so [["Foo", "Bar"]] or [["Foo", "Bar"], "Baz"] would work just fine. For people already using groupBy, this function will be very easy to switch to.