lc:generate-crud

Generate Laravel CRUD scaffolding with migrations, models, controllers, and Volt components.

12|2|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/edulazaro/laraclaude --skill lc-generate-crud
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lc:generate-crud
Source: https://github.com/edulazaro/laraclaude/tree/main/skills/generate-crud
Command: npx skills add https://github.com/edulazaro/laraclaude --skill lc-generate-crud

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill eliminates the repetitive boilerplate required to build new Laravel features by automating the creation of migrations, models, controllers, and Livewire components.

Core Features & Use Cases

  • Full-Stack Scaffolding: Generates migrations, models, controllers, and Volt-based Livewire components in one workflow.
  • Convention Enforcement: Ensures all generated code adheres to project-specific standards like multi-tenancy, soft deletes, and slug usage.
  • Use Case: When adding a new entity like a Project or Task, use this skill to instantly generate the database schema, model logic, and the corresponding UI modals and tables.

Quick Start

Invoke the generator by specifying the model name to scaffold the entire CRUD module for that entity.

Frequently Asked Questions about lc:generate-crud

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

FAQPage Schema
How do I generate Laravel CRUD scaffolding for a new model quickly?

This skill generates Laravel CRUD scaffolding by creating migrations, models, controllers, and Volt-based Livewire components in one workflow. You simply invoke the generator with a model name to instantly produce the full-stack module.

What is the best way to automate Livewire Volt component creation in Laravel?

Automating Livewire Volt component creation is best handled by scaffolding the entire CRUD module at once. This skill generates the UI modals and tables alongside the backend model and controller logic.

Does this Laravel CRUD generator enforce project conventions like soft deletes and multi-tenancy?

Yes, this Laravel CRUD generator enforces project conventions by analyzing your existing codebase. It ensures all generated code adheres to specific architectural patterns like multi-tenancy, soft deletes, and slug usage.

Do I need access to the Artisan CLI to scaffold Laravel modules with this tool?

Yes, you need access to the Artisan CLI to run database operations when scaffolding Laravel modules. The generator also requires access to your project's existing codebase to infer your specific architectural conventions.

Can I use this scaffolding tool to create a complete multi-tenant Laravel backend?

You can use this scaffolding tool to create a multi-tenant Laravel backend if your project already follows that architectural pattern. It infers your existing conventions to generate models, controllers, and migrations that strictly adhere to your multi-tenancy setup.