Skip to content

Instantly share code, notes, and snippets.

View meorajrul's full-sized avatar

MeorA meorajrul

  • Malaysia
View GitHub Profile
@meorajrul
meorajrul / macro.md
Created May 18, 2018 07:48 — forked from brunogaspar/macro.md
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