PHPackages                             patilvishalvs/generic\_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. patilvishalvs/generic\_crud

ActiveLibrary[Framework](/categories/framework)

patilvishalvs/generic\_crud
===========================

A generic crud for MVC in laravel

v1.3(6y ago)032MITPHP

Since Aug 18Pushed 6y ago1 watchersCompare

[ Source](https://github.com/patilvishalvs/generic_crud)[ Packagist](https://packagist.org/packages/patilvishalvs/generic_crud)[ RSS](/packages/patilvishalvs-generic-crud/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (1)Versions (5)Used By (0)

Installation
============

[](#installation)

Create new Laravel Project

```
laravel new

```

Install package

```
composer require patilvishalvs/generic_crud

```

Update default string length in AppServiceProvider.php:

```
//Add following line in AppServiceProvider.php
use Illuminate\Support\Facades\Schema;
...
public function boot()
{
    ...
    //Add following line in boot() function of AppServiceProvider.php
    Schema::defaultStringLength(191);
}

```

Migrate database and enable auth

```
php artisan migrate
php artisan make:auth

```

Update User.php file with following lines to enable ACL:

```
// Use class HasRolesTrait
use PatilVishalVS\GenericCRUD\HasRolesTrait;
...
//Add trait to User model as follow
...
use Notifiable, HasRolesTrait;

```

Register new middleware in Kernel.php

```
protected $routeMiddleware = [
  ...
    'generic_crud' => \PatilVishalVS\GenericCRUD\GenericAuthMiddleware::class,
];

```

Seed and Publish vendor resources and assets then serve

```
php artisan db:seed --class="PatilVishalVS\GenericCRUD\seeds\DatabaseSeeder"
php artisan vendor:publish --tag=public
php artisan vendor:publish --tag=resources
php artisan serve

```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

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 ~0 days

Total

4

Last Release

2507d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23661108?v=4)[Vishal Patil](/maintainers/patilvishalvs)[@patilvishalvs](https://github.com/patilvishalvs)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/patilvishalvs-generic-crud/health.svg)

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

###  Alternatives

[microweber/microweber

New generation CMS with drag and drop

3.4k13.9k1](/packages/microweber-microweber)[pingpong/modules

Laravel Modules

576190.1k13](/packages/pingpong-modules)[lms-laravel/lms-laravel

The Laravel Framework.

4931.8k](/packages/lms-laravel-lms-laravel)[asgardcms/core-module

The core module for AsgardCMS. This is required for every install.

8343.7k27](/packages/asgardcms-core-module)[jorenvanhocht/blogify

Laravel 5 blog package

1791.1k](/packages/jorenvanhocht-blogify)[pingpong/sky

An Extra Laravel Component

216.3k1](/packages/pingpong-sky)

PHPackages © 2026

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