What problem does it solve?
Provides a structured, production-ready workflow and templates to build and configure Laravel 10+ applications quickly and reliably, reducing time spent on boilerplate, incorrect patterns, and fragile implementations across models, APIs, queues, auth, and UI components.
Core Features & Use Cases
- Eloquent modelling: Opinionated model, migration, cast and relationship patterns with guidance to avoid N+1 issues and apply scopes and custom casts.
- APIs & routing: Design API resources, route patterns, controllers and validated form requests for consistent, versioned REST endpoints.
- Auth, queues & background work: Implement Sanctum authentication flows, configure Horizon and queue workers, and design idempotent queued jobs with retry/backoff strategies.
- Reactive interfaces & testing: Build Livewire components and Blade templates, and accompany every feature with Pest/PHPUnit tests and factories to target >85% coverage.
- Validation & standards: Enforces PHP 8.2+ features, PSR-12 coding style, dependency injection, and checkpoint commands for migrations, routing, jobs and tests.
Quick Start
Create a posts feature by scaffolding Eloquent models and relationships, protect API routes with Sanctum, dispatch a publish job to Horizon, build a Livewire interface, and add Pest feature tests to validate behavior.