What problem does it solve? Laravel applications often grow into tangled codebases with fat controllers, N+1 query problems, and inconsistent API responses. This Skill provides production-grade architecture patterns that keep Laravel apps structured, maintainable, and scalable. ## Core Features & Use Cases - Layered Architecture Guidance: Enforces thin controllers with orchestration in services and single-purpose actions, plus service container bindings for clean dependency wiring. - Eloquent Best Practices: Covers typed models, custom casts, query scopes, eager loading to avoid N+1 queries, transactions, and migration conventions. - API & Infrastructure Patterns: Standardizes form request validation, API resources with pagination, scoped route-model binding, queues, events, and caching strategies. - Use Case: When building a multi-tenant Laravel API, use this Skill to set up scoped route bindings that prevent cross-tenant access, structure controllers around actions, and return consistent paginated JSON responses. ## Quick Start Ask the AI to scaffold a Laravel orders API using thin controllers, form request validation, Eloquent resources, and scoped route-model binding.