PHPackages                             intentsolutions/make-crud - 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. intentsolutions/make-crud

ActiveLibrary[Framework](/categories/framework)

intentsolutions/make-crud
=========================

crud maker for laravel

00PHP

Since Jul 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/intentsolutions/make-crud)[ Packagist](https://packagist.org/packages/intentsolutions/make-crud)[ RSS](/packages/intentsolutions-make-crud/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

CRUD Maker
==========

[](#crud-maker)

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

[](#installation)

Run the installation using composer

```
composer require intentsolutions/make-crud

```

open your config/app.php and add this line in providers section

```
IS\CrudMaker\CrudMakerServiceProvider::class,

```

run the artisan command

```
php artisan vendor:publish --provider="IS\CrudMaker\CrudMakerServiceProvider"

```

you get this files

```
app
└──  Filters
   ├── BaseFilters.php
   └── Filterable.php

```

Usage
-----

[](#usage)

Crude fields are based on a table in the database.

For example, the fields for the `Product` entity will be generated based on the `products` table in the database

```
php artisan make:crud

```

After that, you need to enter the name of the entity and select a template

Templates
---------

[](#templates)

### Api

[](#api)

while creating a crud you will get this structure

if you want to use Swagger/OpenApi you should also install this package  and fill in `@OA\Info` in your Controller.php

```
app
├── Http
│   ├── Controllers
│   │   └── EntityController.php
│   ├── Requests
│   │   └── Entity
│   │       └── EntityRequest.php
│   └── Resources
│       └── Entity
│           ├── EntityCollection.php
│           └── EntityResource.php
├── Models
│   ├── Entity.php
├── Repositories
│   └── EntityRepository.php
└── Services
  └── EntityService.php
database
└── factories
   └── EntityFactory.php
tests
└── Feature
   └── EntityTest.php

```

### Default

[](#default)

while creating a crud you will get this structure

```
app
├── Http
│   ├── Controllers
│   │   └── EntityController.php
│   └── Requests
│       └── Entity
│           └── EntityRequest.php
├── Models
│   └── Entity.php
├── Repositories
│   └── EntityRepository.php
└── Services
  └── EntityService.php
database
└── factories
   └── EntityFactory.php
resources
└── views
  └── entity
      ├── form.blade.php
      ├── list.blade.php
      └── show.blade.php
tests
└── Feature
   └── EntityTest.php

```

Links
-----

[](#links)

- [Intent Solutions](https://intent-solutions.com/)

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 66.7% 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/43c729afd5dd2b7ace70e29d8cd99b76da4c7442c4c96cc931f1da0e7cc9ee75?d=identicon)[intent-solutions](/maintainers/intent-solutions)

---

Top Contributors

[![DenisKashchavtsev](https://avatars.githubusercontent.com/u/104227603?v=4)](https://github.com/DenisKashchavtsev "DenisKashchavtsev (4 commits)")[![intentsolutions](https://avatars.githubusercontent.com/u/58427550?v=4)](https://github.com/intentsolutions "intentsolutions (2 commits)")

### Embed Badge

![Health badge](/badges/intentsolutions-make-crud/health.svg)

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

###  Alternatives

[laravel/dusk

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

1.9k39.6M300](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

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