Skip to content

Instantly share code, notes, and snippets.

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

  • Save FrankFlow/0a78da3fc4619024e2ec3132f3908777 to your computer and use it in GitHub Desktop.

Select an option

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