PHPackages                             jaapmoolenaar.nl/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. jaapmoolenaar.nl/crud-generator

AbandonedLibrary[Admin Panels](/categories/admin)

jaapmoolenaar.nl/crud-generator
===============================

Laravel 5 CRUD Generator

5.6(8y ago)393PHPPHP &gt;=5.5.9

Since Aug 24Pushed 8y ago2 watchersCompare

[ Source](https://github.com/JaapMoolenaar/crud-generator)[ Packagist](https://packagist.org/packages/jaapmoolenaar.nl/crud-generator)[ RSS](/packages/jaapmoolenaarnl-crud-generator/feed)WikiDiscussions 2.0 Synced 4w ago

READMEChangelog (10)Dependencies (3)Versions (15)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 jaapmoolenaar.nl/crud-generator

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

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

        Appzcoder\CrudGenerator\CrudGeneratorServiceProvider::class,
    ],
    ```
3. Add service provider &amp; aliases for **laravelcollective/html** to **/config/app.php** file.

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

        Collective\Html\HtmlServiceProvider::class,
    ],

    'aliases' => [
        ...

        'Form'      => Collective\Html\FormFacade::class,
        'HTML'      => Collective\Html\HtmlFacade::class,
    ],
    ```
4. Add service provider &amp; aliases for **laracasts/flash** to **/config/app.php** file.

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

        Laracasts\Flash\FlashServiceProvider::class,
    ],

    'aliases' => [
        ...

        'Flash'     => Laracasts\Flash\Flash::class,
    ],
    ```
5. Run **composer update** if composer hasn't installed the updates already
6. Publish config file &amp; generator template files.

    ```
    php artisan vendor:publish

    ```

    This copies the stubs to resources/crud-generator/, remember to enable them in the config ('custom\_template' in crudgenerator.php) if you want to use them

Note: You should have configured database for this operation.

Commands
--------

[](#commands)

#### Crud command:

[](#crud-command)

```
php artisan crud:generate Posts --fields="title:string, body:text"

```

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

```
php artisan crud:generate Posts --fields="title:string:required, body:text:required" --route=yes --pk=id --view-path="admin" --namespace=Admin --route-group=admin

```

Options:

- --fields : Fields name for the form &amp; model.
- --route : Include Crud route to routes.php? yes or no.
- --pk : The name of the primary key.
- --view-path : The name of the view path.
- --namespace : Namespace of the controller.
- --route-group : Prefix of the route group.

---

---

#### Other commands (optional):

[](#other-commands-optional)

For controller generator:

```
php artisan crud:controller PostsController --crud-name=posts --model-name=Post --view-path="directory" --route-group=admin

```

For model generator:

```
php artisan crud:model Post --fillable="['title', 'body']"

```

For migration generator:

```
php artisan crud:migration posts --schema="title:string, body:text"

```

For view generator:

```
php artisan crud:view posts --fields="title:string, body:text" --view-path="directory" --route-group=admin

```

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. *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('posts', 'PostsController');
```

### 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

### Custom Generator's Stub Template

[](#custom-generators-stub-template)

You can customize the generator's stub files/templates to achieve your need.

1. Make sure you've published package's assets.

    ```
    php artisan vendor:publish

    ```
2. Turn on custom\_template support on **/config/crudgenerator.php**

    ```
    'custom_template' => true,

    ```
3. From the directory **/resources/crud-generator/** you can modify or customize the stub files.

### Other configuration options

[](#other-configuration-options)

You're able to use another layout to extend than 'layouts.master', by using this configuration option: (If it's anything other than the default 'layouts.master', the layout stub will not be copied)

```
'extend_layout' => 'layouts.app',
```

If you use another section name in your layout, set it using:

```
'section_name' => 'sub_content',
```

Set middleware to be used by the resource controller, using: (Laravel 5.2's 'web' middleware, will be added automatically)

```
'middleware' => 'auth',
```

\##Authors

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

[Jaap Moolenaar](http://jaapmoolenaar.nl)

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 90.5% 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 ~68 days

Recently: every ~193 days

Total

15

Last Release

3010d ago

Major Versions

v1.0.6 → v2.0.02016-01-21

2.4.0 → 5.62018-04-03

### Community

Maintainers

![](https://www.gravatar.com/avatar/41458824d118b160a0698211b9288090a67f27a4a0f87f3a65b96073decf2b3e?d=identicon)[jaapmoolenaar.nl](/maintainers/jaapmoolenaar.nl)

---

Top Contributors

[![sohelamin](https://avatars.githubusercontent.com/u/1708683?v=4)](https://github.com/sohelamin "sohelamin (86 commits)")[![landjea](https://avatars.githubusercontent.com/u/4738992?v=4)](https://github.com/landjea "landjea (4 commits)")[![remailednet](https://avatars.githubusercontent.com/u/240516?v=4)](https://github.com/remailednet "remailednet (2 commits)")[![JaapMoolenaar](https://avatars.githubusercontent.com/u/2211836?v=4)](https://github.com/JaapMoolenaar "JaapMoolenaar (1 commits)")[![siegerhansma](https://avatars.githubusercontent.com/u/3443339?v=4)](https://github.com/siegerhansma "siegerhansma (1 commits)")[![wink-](https://avatars.githubusercontent.com/u/1276095?v=4)](https://github.com/wink- "wink- (1 commits)")

---

Tags

laravelcrudcrud generatorlaravel crud generator

### Embed Badge

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

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

###  Alternatives

[appzcoder/crud-generator

Laravel CRUD Generator

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

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

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

PHPackages © 2026

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