Skip to content

Instantly share code, notes, and snippets.

@FrankFlow
Created September 13, 2017 14:20
Show Gist options
  • Select an option

  • Save FrankFlow/8aecca528f4fdc144f0ca033d8aa1ffc to your computer and use it in GitHub Desktop.

Select an option

Save FrankFlow/8aecca528f4fdc144f0ca033d8aa1ffc to your computer and use it in GitHub Desktop.
<?php
$inItaly = collect($hosts)
->where('location', 'Italy')
->when(request('retired'), function($collection) {
return $collection->reject(function($employee){
return $employee['is_active'];
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment