Skip to content
Advertisement

Laravel: Get Object From Collection By Attribute

In Laravel, if I perform a query:

JavaScript

…then $foods is an Illuminate Collection of Food model objects. (Essentially an array of models.)

However, the keys of this array are simply:

JavaScript

…so if I want to alter, say, the Food object with an id of 24, I can’t do this:

JavaScript

…because this will merely alter the 25th element in the array, not the element with an id of 24.

How do I get a single (or multiple) element(s) from a collection by ANY attribute/column (such as, but not limited to, id / color / age / etc.)?

Of course, I can do this:

JavaScript

…but, that’s just gross.

And, of course, I can do this:

JavaScript

…but that’s even more gross, because it performs an additional unnecessary query when I already have the desired object in the $foods collection.

Thanks in advance for any guidance.

EDIT:

To be clear, you can call ->find() on an Illuminate Collection without spawning another query, but it only accepts a primary ID. For instance:

JavaScript

However, there is still no clean (non-looping, non-querying) way to grab an element(s) by an attribute from a Collection, like this:

JavaScript

Advertisement

Answer

You can use filter, like so:

JavaScript

filter will also return a Collection, but since you know there will be only one, you can call first on that Collection.

You don’t need the filter anymore (or maybe ever, I don’t know this is almost 4 years old). You can just use first:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement