What problem does it solve? Laravel offers multiple valid ways to solve the same problem, which leads to inconsistent patterns, N+1 query bugs, security gaps, and unmaintainable controllers. This Skill provides an indexed rulebook of Laravel best practices so code is written and reviewed against concrete, verifiable standards. ## Core Features & Use Cases - Rule Index by Concern: Twenty rule files covering database performance, Eloquent, security, validation, routing, migrations, queues, caching, HTTP client, error handling, events, mail, scheduling, collections, Blade, config, testing, style, 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 Examples: Each rule shows concrete wrong and right PHP code, covering issues like N+1 queries, missing authorization, unvalidated input, and queue misconfiguration. - Use Case: While refactoring a controller that loads posts with their authors, the Skill directs you to the db-performance rules, where you apply eager loading with with() and constrained column selection to eliminate the N+1 problem. ## Quick Start Ask the AI to review your Laravel controller, model, or migration against the Laravel best practices rules and fix any violations it finds.