Skip to content

Instantly share code, notes, and snippets.

@brunogaspar
brunogaspar / macro.md
Last active July 12, 2024 12:08
Recursive Laravel Collection Macros

What?

If a nested array is passed into a Laravel Collection, by default these will be threaded as normal arrays.

However, that's not always the ideal case and it would be nice if we could have nested collections in a cleaner way.

This is where this macro comes in handy.

Setup