What problem does it solve? Laravel offers multiple valid ways to solve the same problem, which leads to inconsistent codebases, N+1 query bugs, security gaps, and performance regressions. This Skill provides an indexed rule set covering the full Laravel stack so code is written and reviewed against consistent, proven patterns. ## Core Features & Use Cases - Indexed Rule Library: Twenty rule files covering Eloquent, migrations, validation, routing, security, caching, queues, scheduling, testing, and architecture, each with incorrect/correct code examples. - Consistency-First Guidance: Instructs checking existing codebase patterns before applying any rule, so refactors match the project's established conventions. - Performance & Security Focus: Concrete fixes for N+1 queries, missing indexes, mass assignment, SQL injection, XSS, and queue misconfiguration. - Use Case: When reviewing a pull request that adds a new controller with Eloquent queries, map the changes to the routing, eloquent, and db-performance rule files and verify the code against each pattern before approving. ## Quick Start Review this Laravel controller and its Eloquent queries against the best-practice rules and fix any N+1 or validation issues.