laravel-specialist

Builds and configures Laravel 10+ apps with Eloquent, Sanctum, Horizon, Livewire, and Pest.

1|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/Jorge-Ivan/uam-hogar-nazareth-web --skill laravel-specialist-jorge-ivan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel-specialist
Source: https://github.com/Jorge-Ivan/uam-hogar-nazareth-web/tree/main/.claude/skills/laravel-specialist
Command: npx skills add https://github.com/Jorge-Ivan/uam-hogar-nazareth-web --skill laravel-specialist-jorge-ivan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the development and configuration of complex Laravel applications, ensuring robust, efficient, and well-tested code.

Core Features & Use Cases

  • Model & Relationship Management: Create and configure Eloquent models, relationships, scopes, and casts.
  • API Development: Design and implement RESTful APIs using API Resources.
  • Queue Management: Set up and manage background jobs and queues with Horizon.
  • Testing: Write comprehensive feature and unit tests using Pest.
  • Use Case: Develop a new feature for an e-commerce platform, including creating product models, setting up an API endpoint to list products, and queuing a job to update inventory counts.

Quick Start

Use the laravel-specialist skill to create a new Eloquent model named 'Order' with a 'user_id' foreign key and a 'total_amount' decimal field.

Frequently Asked Questions about laravel-specialist

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create Eloquent models with relationships and custom casts in Laravel 10+?

You build Eloquent models by defining schema relationships, registering custom casts, and applying query scopes. This streamlines complex data access by configuring object-relational mapping directly within your Laravel application architecture.

What's the best way to set up RESTful API authentication using Sanctum and API Resources?

The best way to build RESTful APIs involves implementing authentication flows with Sanctum and transforming responses using API Resources. This method secures endpoints while standardizing JSON output formats for consistent client-side data consumption.

How do I write comprehensive feature and unit tests for Laravel applications using Pest?

Writing tests with Pest involves executing feature and unit test cases against your application endpoints and logic. This ensures robust code by validating behaviors and preventing regressions during continuous integration workflows.

Can I manage background jobs and queue processing using Horizon in a Laravel application?

Yes, you can configure queue management by setting up Horizon to supervise background jobs. This handles task distribution efficiently, ensuring long-running processes like inventory updates execute without blocking web requests.

Does Livewire work with Laravel 10 for building reactive interfaces and dynamic components?

Livewire integrates seamlessly to build reactive interfaces within Laravel 10+. It allows you to create dynamic UI components by writing PHP code, bypassing the need for complex JavaScript while maintaining real-time page interactivity.