PHPackages                             pretasoft/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. [Admin Panels](/categories/admin)
4. /
5. pretasoft/crud-generator

ActiveLibrary[Admin Panels](/categories/admin)

pretasoft/crud-generator
========================

Laravel 5 CRUD Generator integrated with AdminLTE

v1.0.4(10y ago)014MITPHPPHP &gt;=5.5.9

Since Aug 24Pushed 10y ago1 watchersCompare

[ Source](https://github.com/PretaSOFT/crud-generator)[ Packagist](https://packagist.org/packages/pretasoft/crud-generator)[ RSS](/packages/pretasoft-crud-generator/feed)WikiDiscussions 1.0 Synced 1mo ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

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

[](#laravel-5-crud-generator)

Laravel CRUD Generator

### Requirements

[](#requirements)

```
Laravel >=5.1
PHP >= 5.5.9

```

Installation
------------

[](#installation)

1. Run

    ```
    composer require appzcoder/crud-generator

    ```
2. Add service provider to **/config/app.php** file.

    ```
    'providers' => [
        ...

        Appzcoder\CrudGenerator\CrudGeneratorServiceProvider::class,
        // Use the line bellow for "laravelcollective/html" package otherwise remove it.
        Collective\Html\HtmlServiceProvider::class,
    ],

    // Use the lines bellow for "laravelcollective/html" package otherwise remove it.
    'aliases' => [
        ...

        'Form'      => Collective\Html\FormFacade::class,
        'HTML'      => Collective\Html\HtmlFacade::class,
    ],
    ```
3. Run **composer update**

Note: You should have configured database as well for this operation.

Commands
--------

[](#commands)

#### Crud command:

[](#crud-command)

```
php artisan crud:generate Person --fields="name:string, email:string, age:number, message:text"

```

You can also easily include route, set primary key, set views directory etc through options **--route**, **--pk**, **--view-path** as bellows:

```
php artisan crud:generate Person --fields="name:string, email:string, age:number, message:text" --route=yes --pk=id --view-path="admin" --namespace=Admin

```

---

---

#### Other commands (optional):

[](#other-commands-optional)

For controller generator:

```
php artisan crud:controller PersonController --crud-name=Person --view-path="directory"

```

For model generator:

```
php artisan crud:model Person --fillable="['name', 'email', 'message']"

```

For migration generator:

```
php artisan crud:migration person --schema="name:string, email:string, age:number, message:text"

```

For view generator:

```
php artisan crud:view Person --fields="name:string, email:string, age:number, message:text" --view-path="directory"

```

By default, the generator will attempt to append the crud route to your *routes.php* file. If you don't want the route added, you can use the option `--route=no`.

After creating all resources run migrate command *(and, if necessary, include the route for your crud as well)*.

```
php artisan migrate

```

If you chose not to add the crud route in automatically (see above), you will need to include the route manually.

```
Route::resource('person', 'PersonController');
```

### Supported Field Types

[](#supported-field-types)

These fields are supported for migration and view's form:

- string
- char
- varchar
- password
- email
- date
- datetime
- time
- timestamp
- text
- mediumtext
- longtext
- json
- jsonb
- binary
- number
- integer
- bigint
- mediumint
- tinyint
- smallint
- boolean
- decimal
- double
- float

\##Author

[Sohel Amin](http://www.sohelamin.com)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 93.4% 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.

###  Release Activity

Cadence

Every ~45 days

Total

3

Last Release

3823d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b3058dd386e3f93c7d38091bc306a280e49c6624888dfb0c3787a5c39481ba37?d=identicon)[paramah](/maintainers/paramah)

---

Top Contributors

[![sohelamin](https://avatars.githubusercontent.com/u/1708683?v=4)](https://github.com/sohelamin "sohelamin (71 commits)")[![landjea](https://avatars.githubusercontent.com/u/4738992?v=4)](https://github.com/landjea "landjea (4 commits)")[![siegerhansma](https://avatars.githubusercontent.com/u/3443339?v=4)](https://github.com/siegerhansma "siegerhansma (1 commits)")

---

Tags

laravelcrudcrud generator

### Embed Badge

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

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

###  Alternatives

[appzcoder/crud-generator

Laravel CRUD Generator

1.4k581.4k7](/packages/appzcoder-crud-generator)[takielias/tablar-crud-generator

Laravel Tablar Crud Generator based on https://github.com/takielias/tablar

315.6k](/packages/takielias-tablar-crud-generator)

PHPackages © 2026

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