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

ActiveLibrary[Framework](/categories/framework)

abidmi/crud-generator
=====================

Laravel 5 CRUD Generator

016PHP

Since Jan 5Pushed 10y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)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 abidmi/crud-generator

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

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

        Abidmi\CrudGenerator\CrudGeneratorServiceProvider::class,
    ],
    ```
3. Install **laravelcollective/html** package for form &amp; html.

    - Run

    ```
    composer require laravelcollective/html
    // For laravel 5.1
    composer require laravelcollective/html:5.1.*

    ```

    - Add service provider &amp; aliases to **/config/app.php** file.

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

        Collective\Html\HtmlServiceProvider::class,
    ],

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

        'Form'      => Collective\Html\FormFacade::class,
        'HTML'      => Collective\Html\HtmlFacade::class,
    ],
    ```
4. Run **composer update**
5. Publish config file &amp; generator template files.

    ```
    php artisan vendor:publish

    ```

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.

\##Edited Abid Muhamad Ismi

\##Thanks For [Sohel Amin](http://www.sohelamin.com)

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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/96542de8b0654cb62d0e7366b6ce58ee3fa1bd19c766c361b320e4d133068d78?d=identicon)[abidmi](/maintainers/abidmi)

---

Top Contributors

[![abidmi](https://avatars.githubusercontent.com/u/7425144?v=4)](https://github.com/abidmi "abidmi (3 commits)")

### Embed Badge

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

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M190](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

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

1.9k36.7M255](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M591](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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