PHPackages                             ahaduzzamanapon/makecrud - 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. ahaduzzamanapon/makecrud

ActiveLibrary[Framework](/categories/framework)

ahaduzzamanapon/makecrud
========================

Create a Laravel Crud in a few seconds

019PHP

Since Jul 11Pushed 1y ago1 watchersCompare

[ Source](https://github.com/ahaduzzamanapon/makecrud)[ Packagist](https://packagist.org/packages/ahaduzzamanapon/makecrud)[ RSS](/packages/ahaduzzamanapon-makecrud/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Crud Generator Laravel 9 and 10 (your time saver)
=================================================

[](#crud-generator-laravel-9-and-10-your-time-saver)

Crud Generator Laravel is a package that you can integrate in your Laravel to create a REAL CRUD. It includes :

- **Controller** with all the code already written
- **Views** (index, create, edit, show)
- **Model** with relationships
- **Request** file with validation rules
- **Migration** file

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

[](#installation)

1\. Run the following composer command:

`composer require ahaduzzamanapon/makecrud:dev-main`

2\. If you don't use Laravel Collective Form package in your project, install it:

`composer require laravelcollective/html`

(Note: This step is not required if you don't need views.)

3\. Publish the configuration file, stubs and the default-theme directory for views:

`php artisan vendor:publish --provider="ahaduzzamanapon\makecrud\MakecrudServiceProvider"`

Usage
-----

[](#usage)

### Create CRUD (or REST API)

[](#create-crud-or-rest-api)

Let's illustrate with a real life example : Building a blog

A `Post` has many (hasMany) `Comment` and belongs to many (belongsToMany) `Tag`

A `Post` can have a `title` and a `content` fields

Let's do this 🙂

#### CRUD generator command :

[](#crud-generator-command-)

`php artisan make:crud nameOfYourCrud "column1:type, column2"` (theory)

`php artisan make:crud post "title:string, content:text"` (for our example)

Now let's add our relationships (`Comment` and `Tag` models) :

We add a `hasMany` relationship between our `Post` and `Comment`and a `belongsToMany` with `Tag`

Two migrations are created (`create_posts` AND `create_post_tag`).

`create_posts` is your table for your `Post` model

`create_post_tag` is a pivot table to handle the `belongsToMany` relationship

`Post` model is generated too with both relationships added

### Migration

[](#migration)

Both migration files are created in your **database/migrations** directory. If necessary edit them and run :

`php artisan migrate`

### Controller

[](#controller)

A controller file is created in your **app/Http/Controllers** directory. All methods (index, create, store, show, edit, update, destroy) are filled with your fields.

### Routes

[](#routes)

To create your routes for this new controller, you can do this :

`Route::resource('posts', PostsController::class);` (don't forget to import your `PostsController` in your `web.php` file)

##### Screenshots

[](#screenshots)

`/posts/create` :

`/posts` :

You can `edit` and `delete` your new post. And a `show` page is created too 🙂

### Request

[](#request)

A request file is created in your **app/Http/Requests** directory. By default, all fields are required, you can edit it according to your needs.

### Views

[](#views)

A views directory is created in your **resources/views** directory.

You can create views independently of the CRUD generator with : `php artisan make:views nameOfYourDirectoryViews "column1:type, column2"`

Finish your blog
----------------

[](#finish-your-blog)

Add your `Comment` CRUD (with a column `comment` and a `post_id`)

`php artisan make:crud comment "comment:text, post_id:integer"`

Add your `Tag` CRUD (with a `column` name)

`php artisan make:crud tag "name"`

FYI : `Comment` is a specific case and you can use `make:commentable` command

Finished 🎉

Remove a CRUD
-------------

[](#remove-a-crud)

You can delete all files (except migrations) created by the `make:crud` command at any time. No need to remove files manually :

`php artisan rm:crud nameOfYourCrud --force`

`php artisan rm:crud post --force` (in our example)

The `--force` flag (optional) deletes all files without confirmation

License
-------

[](#license)

Other Projects
--------------

[](#other-projects)

Explore my other projects on GitHub:

- **[LaraFileEncrypter](https://github.com/misterdebug/laravel-file-encrypter)**: Secure your files in Laravel with AES-256 encryption, without persistent key storage hassle.

makecrud
========

[](#makecrud)

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity18

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/863bcd614103c4affc546ce4cb94da81e317e2cd6fbdb1ad5782a31b2d32426a?d=identicon)[ahaduzzamanapon](/maintainers/ahaduzzamanapon)

---

Top Contributors

[![ahaduzzamanapon](https://avatars.githubusercontent.com/u/75909816?v=4)](https://github.com/ahaduzzamanapon "ahaduzzamanapon (19 commits)")

### Embed Badge

![Health badge](/badges/ahaduzzamanapon-makecrud/health.svg)

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

###  Alternatives

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/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.7M259](/packages/laravel-dusk)[laravel/prompts

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

708181.8M596](/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)
