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

ActiveLibrary

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 2mo 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

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

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

2458d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/952198313924b9a7bb9d61383f05c814838d222239adcd3066f9bd3e9eb342ce?d=identicon)[patilvishalvs](/maintainers/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

[infyomlabs/laravel-generator

InfyOm Laravel Generator

3.8k2.3M13](/packages/infyomlabs-laravel-generator)[laravelrus/sleepingowl

Administrative interface builder for Laravel.

810219.6k3](/packages/laravelrus-sleepingowl)[patricktalmadge/bootstrapper

Twitter Bootstrap markup generator

557407.2k4](/packages/patricktalmadge-bootstrapper)[pingpong/menus

Laravel Menus

70194.4k13](/packages/pingpong-menus)[akaunting/laravel-menu

Menu and sidebar management package for Laravel

38233.8k](/packages/akaunting-laravel-menu)[ngmy/webloyer

Webloyer is a Web UI for managing Deployer deployments

2181.1k](/packages/ngmy-webloyer)

PHPackages © 2026

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