PHPackages                             prolaxu/easy-curd - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. prolaxu/easy-curd

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

prolaxu/easy-curd
=================

Package that helps you create crud faster.

v0.2(3y ago)018MITPHP

Since Mar 29Pushed 3y ago1 watchersCompare

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

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

Easy Crud
=========

[](#easy-crud)

Laravel package for automating simple Crud by providing required operation for creating curd api in lighting speed.

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

[](#installation)

Install easy-crud using following command:

```
  composer require prolaxu/easy-curd
```

You can find this package in packagist: [prolaxu/easy-curd](https://packagist.org/packages/prolaxu/easy-curd)

How to use?
-----------

[](#how-to-use)

It is very simple to use as you just have to use as shown below:

Suppose i have Post model, resource,request and controller i can make quick curd as shown below:

#### Step 1:

[](#step-1)

Use Curd on model:

```
...
use Prolaxu\EasyCrud\Traits\Crud;
...
class ModelName extends Model
{
    use Crud;
    ...
}
```

example:

```
group(function (){
    Route::get('', 'index'); //list of items
    Route::post('', 'store'); // store the item
    Route::get('{id}', 'show');  //show one item
    Route::put('{id}', 'update'); // update one item
    Route::delete('delete', 'delete'); //delete multiple items
    Route::delete('{id}', 'destroy'); //delete one item
});
```

License
-------

[](#license)

[MIT](https://choosealicense.com/licenses/mit/)

Authors
-------

[](#authors)

- [@prolaxu](https://www.github.com/prolaxu)

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

1144d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/348936a0de809462b67cd2bdacb000b5e187160b7ee94ede9aacde5d55a023e7?d=identicon)[prolaxu](/maintainers/prolaxu)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/prolaxu-easy-curd/health.svg)

```
[![Health](https://phpackages.com/badges/prolaxu-easy-curd/health.svg)](https://phpackages.com/packages/prolaxu-easy-curd)
```

###  Alternatives

[techlab/smartwizard

The awesome jQuery step wizard plugin

79096.2k2](/packages/techlab-smartwizard)[v.chetkov/php-clean-architecture

PHP Clean Architecture

14557.8k](/packages/vchetkov-php-clean-architecture)[lazerg/laravel-enum-pro

A powerful PHP enum extension with collection support, random selection, and magic static calls

4319.0k](/packages/lazerg-laravel-enum-pro)[beyondcode/tinkerwell

Drivers, panels and tools for customizing Tinkerwell to your application.

4313.7k2](/packages/beyondcode-tinkerwell)[fof/split

Separate posts from one discussion into its own, splits discussions.

1348.6k3](/packages/fof-split)[adamasantares/dxf

A simple DXF creator for PHP

2610.3k](/packages/adamasantares-dxf)

PHPackages © 2026

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