Skip to content

Instantly share code, notes, and snippets.

@untillnesss
Created June 22, 2024 05:06
Show Gist options
  • Save untillnesss/c7bd2e20512ffc39391def8b503e6591 to your computer and use it in GitHub Desktop.
Save untillnesss/c7bd2e20512ffc39391def8b503e6591 to your computer and use it in GitHub Desktop.
<?php
Collection::macro('recursive', function () {
return $this->map(function ($value) {
if (is_array($value) || is_object($value)) {
return collect($value)->recursive();
}
return $value;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment