PHPackages                             guillermovtec/crud-generator - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. guillermovtec/crud-generator

ActiveLibrary[Framework](/categories/framework)

guillermovtec/crud-generator
============================

Generador automático de CRUDs para Laravel

04[2 PRs](https://github.com/GuillermoVTec/crud-generator/pulls)PHP

Since Mar 7Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/GuillermoVTec/crud-generator)[ Packagist](https://packagist.org/packages/guillermovtec/crud-generator)[ RSS](/packages/guillermovtec-crud-generator/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (4)Used By (0)

Laravel CRUD Generator
======================

[](#laravel-crud-generator)

Paquete para generar un CRUD base (modelo, controlador, vistas y migración) con un solo comando Artisan.

Características
---------------

[](#características)

Genera automáticamente:

- Modelo en `app/Models`
- Controlador REST en `app/Http/Controllers`
- Migración en `database/migrations` (si pasas `--fields`)
- Vistas Blade: `index`, `create`, `edit`
- Sugerencia de ruta `Route::resource(...)`

Requisitos
----------

[](#requisitos)

- PHP 8.2+
- Laravel 10, 11 o 12

Instalación
-----------

[](#instalación)

```
composer require guillermovtec/crud-generator
```

Si lo usas localmente por ruta:

```
{
  "repositories": [
    {
      "type": "path",
      "url": "../laravel-packages/crud-generator"
    }
  ]
}
```

Luego:

```
composer require guillermovtec/crud-generator:dev-main
```

Uso
---

[](#uso)

```
php artisan make:crud Producto --fields="nombre:string,precio:decimal"
```

Esto genera:

- `app/Models/Producto.php`
- `app/Http/Controllers/ProductoController.php`
- `resources/views/productos/index.blade.php`
- `resources/views/productos/create.blade.php`
- `resources/views/productos/edit.blade.php`
- `database/migrations/xxxx_xx_xx_xxxxxx_create_productos_table.php`

Al final del comando también te muestra la ruta sugerida:

```
Route::resource('productos', App\Http\Controllers\ProductoController::class);
```

Publicar stubs
--------------

[](#publicar-stubs)

```
php artisan vendor:publish --tag=crud-stubs
```

Licencia
--------

[](#licencia)

MIT

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance52

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity16

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/117295197?v=4)[GuillermoVTec](/maintainers/GuillermoVTec)[@GuillermoVTec](https://github.com/GuillermoVTec)

---

Top Contributors

[![GuillermoVTec](https://avatars.githubusercontent.com/u/117295197?v=4)](https://github.com/GuillermoVTec "GuillermoVTec (6 commits)")

### Embed Badge

![Health badge](/badges/guillermovtec-crud-generator/health.svg)

```
[![Health](https://phpackages.com/badges/guillermovtec-crud-generator/health.svg)](https://phpackages.com/packages/guillermovtec-crud-generator)
```

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M299](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
