PHPackages                             dweik/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. [Database &amp; ORM](/categories/database)
4. /
5. dweik/crud-generator

ActiveLibrary[Database &amp; ORM](/categories/database)

dweik/crud-generator
====================

it's a easy tool for laravel +5.1 to generate crud functions base database tables

1.1.0(7y ago)0611MITPHPPHP &gt;=5.4.0

Since Jan 13Pushed 7y ago1 watchersCompare

[ Source](https://github.com/asd4abyd/crud-generator)[ Packagist](https://packagist.org/packages/dweik/crud-generator)[ RSS](/packages/dweik-crud-generator/feed)WikiDiscussions master Synced yesterday

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

Laravel 5 CRUD Generator
------------------------

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

This package generate CRUD(Create, Read, Update and Delete) files base database tables, to save time for programmer.

### Install

[](#install)

Require this package with composer using the following command:

```
composer require dweik/crud-generator
```

After updating composer, add the service provider to the `providers` array in `config/app.php`

```
Dweik\CrudGenerator\CrudGeneratorServiceProvider::class,
```

To install this package on only development systems, add the `--dev` flag to your composer command:

```
composer require --dev dweik/crud-generator
```

In Laravel, instead of adding the service provider in the `config/app.php` file, you can add the following code to your `app/Providers/AppServiceProvider.php` file, within the `register()` method:

```
public function register()
{
    if ($this->app->environment() !== 'production') {
        $this->app->register(\Dweik\CrudGenerator\CrudGeneratorServiceProvider::class);
    }
    // ...
}
```

This will allow your application to load the Laravel CRUD Generator on non-production environments.

### Automatic CRUD generation for Laravel

[](#automatic-crud-generation-for-laravel)

You can now generate the CRUD files by

```
php artisan crud:generate
```

The Laravel CRUD Generator is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

### Changelog

[](#changelog)

v1.1.0

- Add executing Laravel authentication to the options
- Add executing Laravel migrate command to the options
- Ignore auth tables
- Ignore migration table
- Add Option for ignore create\_at, updated\_at and deleted\_at columns
- Fix Routing service in all laravel versions +5.1

v1.0.1

- Fix bugs

V1.0.0

- Support mysql, postgres and mysqli
- Generate Add/Edit Page with fields validation
- Use Javascript Validation for Numeric fields
- Add delete button in action field
- Generate Models for database tables
- use namespace to generated files
- Ignore none auto-increment tables

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~70 days

Total

3

Last Release

2901d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/15715732?v=4)[Abdelqader Osama Aldweik](/maintainers/asd4abyd)[@asd4abyd](https://github.com/asd4abyd)

---

Top Contributors

[![asd4abyd](https://avatars.githubusercontent.com/u/15715732?v=4)](https://github.com/asd4abyd "asd4abyd (2 commits)")

---

Tags

command-linelaravelgeneratormysqlsqlitepostgresqlpostgresartisancrudcommandbootstraproutegeneratecommandline

### Embed Badge

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

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

###  Alternatives

[scienta/doctrine-json-functions

A set of extensions to Doctrine that add support for json query functions.

58523.9M36](/packages/scienta-doctrine-json-functions)[toponepercent/baum

Baum is an implementation of the Nested Set pattern for Eloquent models.

3154.7k](/packages/toponepercent-baum)[moharrum/laravel-adminer

Adminer database management tool for your Laravel application.

451.0k](/packages/moharrum-laravel-adminer)

PHPackages © 2026

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