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 rulebook of Laravel conventions so code is written and reviewed against consistent, proven patterns. ## Core Features & Use Cases - Indexed Rule Files: Twenty topic-specific rule files covering Eloquent, migrations, validation, routing, queues, caching, security, testing, Blade, HTTP client, scheduling, and architecture. - Consistency-First Guidance: Instructs checking existing codebase patterns before applying any rule, so new code matches established conventions instead of introducing a second approach. - Incorrect/Correct Code Examples: Each rule shows concrete PHP snippets of what to avoid and what to write instead, covering issues like N+1 queries, mass assignment, missing indexes, and unqueued notifications. - Use Case: When refactoring a slow Laravel controller, map the concerns to the rule index, read the db-performance and routing rule files, then apply eager loading, column selection, and thin-controller patterns. ## Quick Start Ask the AI to review your Laravel controller, model, or migration against the Laravel best practices rules and suggest fixes.