Feature CRUD Simple

Scaffold a Laravel CRUD module with backend, frontend, and Pest tests.

4|1|Updated Sep 25, 2025
One-click install
npx skills add https://github.com/gmedia/erp --skill feature-crud-simple
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Feature CRUD Simple
Source: https://github.com/gmedia/erp/tree/main/.agent/skills/feature-crud-simple
Command: npx skills add https://github.com/gmedia/erp --skill feature-crud-simple

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Workflow untuk mempercepat pembuatan modul fitur CRUD sederhana yang hanya melibatkan satu tabel utama tanpa relasi foreign key, dengan struktur backend dan frontend terstandar.

Core Features & Use CaseS

  • Backend scaffolding mencakup Model, Controller, Requests, Resources, Actions, Exports, dan Routes
  • Frontend wiring dan scaffolding tes sesuai konvensi proyek
  • Contoh penggunaan: buat modul seperti Departments atau CustomerCategories dengan kerangka CRUD siap dikustomisasi

Quick Start

Jalankan skrip scaffold.sh dengan nama fitur untuk menghasilkan modul CRUD lengkap.

Frequently Asked Questions about Feature CRUD Simple

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

FAQPage Schema
How do I scaffold a complete Laravel CRUD module for a single table?

Yes, Laravel CRUD scaffolding covers both backend and frontend wiring. It generates backend components like Models and Controllers alongside frontend UI wiring to deliver a ready-to-customize file layout.

Can I use this CRUD scaffolding for Laravel modules with foreign key relationships?

No, this CRUD scaffolding is designed for simple modules involving a single primary table without foreign key relationships. You should use it for standalone entities like Departments or CustomerCategories, not relational data structures.

What is the fastest way to generate standard Laravel CRUD files and Pest tests?

The fastest way to generate standard Laravel CRUD files is executing the scaffold.sh script. It enforces standard naming conventions, base classes, and delivers Pest-based tests along with optional automation scripts.

Does Laravel CRUD scaffolding include Form Requests and API Resources?

Yes, Laravel CRUD scaffolding includes Form Requests and API Resources. The backend scaffolding targets these standard classes to ensure validated data input and formatted API responses within the generated module.