Skip to content

Instantly share code, notes, and snippets.

@julianobailao
Created August 31, 2016 19:03
Show Gist options
  • Save julianobailao/200b8544c161952d8ab53b95488618d2 to your computer and use it in GitHub Desktop.
Save julianobailao/200b8544c161952d8ab53b95488618d2 to your computer and use it in GitHub Desktop.
Each / Map collection method
<?php
// Each
$customer->address()->each(function ($address, $key) {
// do something
});
// Map
$customer->address()->map(function ($address) {
// return something
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment