PHPackages                             rcoder/crudgenerator - 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. rcoder/crudgenerator

ActiveProject

rcoder/crudgenerator
====================

CRUD generator

08PHP

Since Nov 16Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rutkowskic/crud-generator)[ Packagist](https://packagist.org/packages/rcoder/crudgenerator)[ RSS](/packages/rcoder-crudgenerator/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (1)Used By (0)

CRUD Generator
==============

[](#crud-generator)

Simple CRUD generator for Laravel.

Getting Started
---------------

[](#getting-started)

To get started, you should add the rcoder/crudgenerator Composer dependency to your project:

```
composer require rcoder/crudgenerator --dev

```

Laravel 5.5+ will register the service provider Rcoder\\CrudGenerator\\CrudGeneratorServiceProvider automatically.

After that You need to publish its assets using the vendor:publish Artisan command:

```
php artisan vendor:publish --provider="Rcoder\CrudGenerator\CrudGeneratorServiceProvider"

```

### Usage

[](#usage)

You will find a configuration file located at config/crud.php.

Create in resources/crud folder your model json files, example post.json

```
{
    "model": "posts",
    "index": {
        "name": "title",
        "where": "langs|code|en"
    },
    "fields": [
        {
            "name": "title",
            "type": "text",
            "active": true,
            "required": true
        },
        {
            "name": "body",
            "type": "textarea",
            "wyswig": false,
            "required": true
        },
        {
            "name": "photo",
            "type": "file",
            "required": false
        },
        {
            "name": "published",
            "type": "radio"
        }
    ],
    "relations":[
        {
            "model": "langs",
            "type": "manytomany",
            "select": {
                "name": "code"
            },
            "fields": [
                {
                    "name": "title",
                    "type": "text"
                }
            ]
        },
        {
            "model": "categories",
            "type": "manytomany",
            "select": {
                "name": "title",
                "where": "langs|code|pl"
            }
        }
    ]
}
```

And generate using Artisan command:

```
php artisan crud:generate

```

Your panel admin is a available on yourapp.com/admin.

Version
-------

[](#version)

This is development version, in feature will be add relations, more type fields and able to create models and migrations.

License
-------

[](#license)

This project is licensed under the MIT License.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity31

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://www.gravatar.com/avatar/2a1a305b776ae5b6536b2eb3aac99bff5e3651fcef51a252a9c04e08c951fb5b?d=identicon)[rutkowskic](/maintainers/rutkowskic)

---

Top Contributors

[![rutkowskic](https://avatars.githubusercontent.com/u/23498211?v=4)](https://github.com/rutkowskic "rutkowskic (9 commits)")

### Embed Badge

![Health badge](/badges/rcoder-crudgenerator/health.svg)

```
[![Health](https://phpackages.com/badges/rcoder-crudgenerator/health.svg)](https://phpackages.com/packages/rcoder-crudgenerator)
```

PHPackages © 2026

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