What problem does it solve? Building Laravel applications correctly requires deep knowledge of Eloquent relationships, queue configuration, API resource design, and testing patterns, and mistakes like N+1 queries or missing validation cause production issues. ## Core Features & Use Cases - Eloquent Model Design: Create models with relationships, scopes, custom casts, and query optimization patterns that prevent N+1 problems. - Queue & Job Management: Implement queued jobs with retry logic, batching, chaining, rate limiting, and Horizon monitoring. - API Development: Build RESTful APIs with controllers, form request validation, API resources, and Sanctum authentication. - Use Case: You need to add a posts API to a Laravel app. The Skill generates the migration, model with relationships, API resource, controller with form request validation, queued publish job, and Pest feature tests, then verifies each step with artisan commands. ## Quick Start Ask the assistant to create a Laravel Eloquent model with relationships, an API resource, and a queued job for a posts feature, then run the Pest tests.