Loading...
Loading...
Found 2,090 Skills
Write focused controller tests using HTTP assertions; keep heavy logic in Actions/Services and unit test them
Define clear relationships and load data efficiently; prevent N+1, use constraints, counts/sums, and pivot syncing safely
Prevent N+1 queries by eager loading; enable lazy-loading protection in non-production; choose selective fields
Wrap multi-write operations in transactions; use dispatchAfterCommit and idempotency patterns to ensure consistency
Apply RED-GREEN-REFACTOR with Pest or PHPUnit; use factories, feature tests for HTTP, and parallel test runners; verify failures before implementation
Schedule tasks with safety; use withoutOverlapping, onOneServer, and visibility settings for reliable cron execution
Write meaningful documentation that explains why not what; focus on complex business logic and self-documenting code
Generic E2E patterns with Playwright—state setup, seeds, test IDs, auth, environment, and Sail integration
Create effective debugging prompts—include error messages, stack traces, expected vs actual behavior, logs, and attempted solutions
Use Laravel-specific vocabulary—Eloquent patterns, Form Requests, API resources, jobs/queues—to get idiomatic framework code
Use hexagonal architecture for external systems; define ports (interfaces) and per-provider adapters; select adapter at composition edge
Process large datasets efficiently using chunk(), chunkById(), lazy(), and cursor() to reduce memory consumption and improve performance