What problem does it solve? Laravel developers often waste time applying random quick fixes that mask underlying issues and create new bugs. This Skill enforces a disciplined debugging methodology that requires root cause investigation before any fix is attempted. ## Core Features & Use Cases - Four-Phase Debugging Process: Enforces root cause investigation, pattern analysis, hypothesis testing, and verified implementation in strict order. - Laravel-Specific Techniques: Covers Telescope, Tinker, query logging, route debugging, queue inspection, and validation error tracing. - Common Scenario Playbooks: Provides step-by-step guidance for N+1 query problems, route model binding failures, and mass assignment exceptions. - Use Case: When a Pest test fails or an Eloquent relationship returns unexpected data, follow the phases to check logs, compare against Laravel conventions, form a single hypothesis in Tinker, and verify the fix with a failing-then-passing test. ## Quick Start Debug my failing Laravel test using the systematic four-phase process starting with root cause investigation.