for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Searchable;
use Illuminate\Support\Collection;
class SearchResultCollection extends Collection
{
public function addResults(string $type, Collection $results)
$results->each(function ($result) use ($type) {
$this->items[] = $result->getSearchResult()->setType($type);
});
return $this;
}
public function groupByType(): Collection
return $this->groupBy(function (SearchResult $searchResult) {
return $searchResult->type;
public function aspect(string $aspectName): Collection
return $this->groupByType()->get($aspectName);