Marketplace
Browse and adopt engineering standards, rules, and configurations. Fork to customize for your organization.
Use Laravel API Resources
laravel
API Resources for JSON responses. Transform models consistently. Collection resources for lists. Conditional attributes.
Use Laravel Eloquent properly
laravel
Eager loading with `with()`. Scopes for reusable queries. Mass assignment protection with $fillable.
Use Laravel migrations and seeders
laravel
Migrations for schema. Seeders for test data. Factories for dynamic data. Never edit applied migrations.
Use Laravel queues for heavy work
laravel
Queue jobs for email, notifications, processing. Use Horizon for monitoring. Retry with backoff.
Use Laravel validation
laravel
Form Requests for complex validation. Validate all input. Custom rules when needed. Authorize in Form Request.
Use Pest for Laravel testing
laravel
Pest is Laravel's default testing framework. Expressive syntax. Use arch tests for architecture rules. describe/it blocks.