laravel
Installation
SKILL.md
Laravel Guide
Applies to: Laravel 11+, PHP 8.2+, Full-Stack Web Applications, APIs, SaaS
Core Principles
- Convention Over Configuration: Follow Laravel's conventions for file placement, naming, and structure
- Service Layer: Keep controllers thin, extract business logic into service classes
- Form Requests: Validate all input through dedicated Form Request classes
- Eloquent Relationships: Use eager loading to prevent N+1 queries
- Queue Everything Slow: Offload email, notifications, and heavy processing to queues