laravel-collections

Installation
SKILL.md

Laravel Collections

Quick Decision Guide

"Which method do I use?"

Find items:

Need Method
First item matching condition first(fn) or firstWhere('key', 'value')
First item or throw firstOrFail(fn)
Exactly one match or throw sole(fn)
Check value exists contains('value') or contains('key', 'value')
Check key exists has('key')
All items match condition every(fn)
Installs
4
Repository
riasvdv/skills
GitHub Stars
3
First Seen
Feb 16, 2026
laravel-collections — riasvdv/skills