Searching a Laravel collection
I had a Laravel collection and I wanted to search it for some content. Surely there is way? Let's say you have a collection of users and you want to find all users whose age is greater than 25. You can use the filter() method of the collection to...