PHPackages                             dkart/crud-maker - 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. dkart/crud-maker

ActiveLibrary

dkart/crud-maker
================

crud maker for laravel

1.0.0(2y ago)1231↓100%Apache-2.0PHP

Since Jun 16Pushed 2y ago2 watchersCompare

[ Source](https://github.com/DenisKashchavtsev/CRUD-maker-for-laravel)[ Packagist](https://packagist.org/packages/dkart/crud-maker)[ Docs](https://dkart.pro)[ RSS](/packages/dkart-crud-maker/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

CRUDMaker-for-laravel
=====================

[](#crudmaker-for-laravel)

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

[](#installation)

Run the installation using composer

```
composer require dkart/crud-maker

```

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

```
DKart\CrudMaker\CrudMakerServiceProvider::class,

```

run the artisan command

```
php artisan vendor:publish --provider="DKart\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)

- [DKart](http://www.dkart.pro/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90% 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

Unknown

Total

1

Last Release

1057d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/94948d260dec75f18b56c89befd693444364edb3ac786b3724a7e962b16474bc?d=identicon)[DenisKashchavtsev](/maintainers/DenisKashchavtsev)

---

Top Contributors

[![DenisKashchavtsev](https://avatars.githubusercontent.com/u/104227603?v=4)](https://github.com/DenisKashchavtsev "DenisKashchavtsev (27 commits)")[![DKartpro](https://avatars.githubusercontent.com/u/89044262?v=4)](https://github.com/DKartpro "DKartpro (3 commits)")

### Embed Badge

![Health badge](/badges/dkart-crud-maker/health.svg)

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

PHPackages © 2026

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