This is a solid reference for avoiding the performance traps that sneak into Laravel apps as they grow. It covers the big ones: eager loading to prevent N+1 queries, using withCount instead of counting in loops, chunking large datasets, and doing updates at the database level instead of loading everything into memory. The examples are clear about what's slow and what's fast, which is exactly what you need when you're staring at a slow query log. The tip about Model::preventLazyLoading in development is worth the price of admission alone since it'll catch relationship issues before they hit production. Useful for both Laravel beginners who need to learn these patterns and experienced developers who want a quick checklist during code review.
npx skills add https://github.com/iserter/laravel-claude-agents --skill eloquent-best-practices