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 a prioritized, opinionated rule set so every controller, model, migration, and job follows proven Laravel conventions. ## Core Features & Use Cases - 19 Rule Categories: Covers database performance, advanced queries, security, caching, Eloquent patterns, validation, configuration, testing, queues, routing, HTTP client, events, mail, error handling, scheduling, architecture, migrations, collections, Blade views, and code style. - Incorrect vs. Correct Examples: Each rule shows anti-patterns alongside the recommended implementation with runnable PHP code snippets. - Consistency-First Guidance: Instructs checking sibling files for existing project patterns before applying any default rule. - Use Case: When refactoring a slow product listing endpoint, the Skill directs you to eager loading with with(), withCount() for relation counts, column selection, and proper indexing to eliminate N+1 queries. ## Quick Start Review my Laravel OrderController and Eloquent queries for N+1 problems, missing authorization, and validation issues using the Laravel best practices skill.