kenmush
This collection method allows you to take items from your collection upto the specified key
$countries = collect(['Kenya', 'Uganda', 'Tanzania', 'Ethiopia', 'Rwanda']);
$countries->takeUntil('Ethiopia');
=> Illuminate\Support\Collection {#1902
all: [
"Kenya",
"Uganda",
"Tanzania",
],
}