PHPackages                             jasrys/laravel-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. [Admin Panels](/categories/admin)
4. /
5. jasrys/laravel-crud

AbandonedLibrary[Admin Panels](/categories/admin)

jasrys/laravel-crud
===================

Laravel CRUD generator

1.0.3(7y ago)025[2 issues](https://github.com/jasrys/laravel-crud/issues)MITPHP

Since Aug 19Pushed 7y agoCompare

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

READMEChangelog (10)Dependencies (2)Versions (13)Used By (0)

laravel-crud
============

[](#laravel-crud)

CRUD generator package for Laravel

Why yet another CRUD generator?
-------------------------------

[](#why-yet-another-crud-generator)

I needed a package to quickly whip up simple models, resource controllers, migrations, feature tests, factories, routes, and views quickly, and none of the other packages I found fit the way I prefer to structure my projects.

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

[](#installation)

Run `composer require jasrys/laravel-crud`. The `CrudServiceProvider` will be auto-discovered if your version of Laravel supports it. Otherwise, add a reference to `Jasrys\Crud\CrudServiceProvider::class` in the `providers` array of your `config/app.php` file.

Creating CRUD Models
--------------------

[](#creating-crud-models)

This package exposes a single command: `php artisan make:crud`. It accepts a single argument for the name of the model as well as a comma-separated (no space) `--attributes` option for the model's attributes.

For example: `php artisan make:crud Post --attributes=title,body`

What happens when you run `make:crud` command?
----------------------------------------------

[](#what-happens-when-you-run-makecrud-command)

- It creates the model and sets the `fillable` fields with the given attributes
- It creates a model factory for the model with the given attributes. By default, the factory assigns a random `$faker->word` to the attribute.
- It creates a migration for the model. By default, all attributes are assumed to be text fields and you'll need to manually edit the migration for other types. I would accept a PR to allow on-the-fly configuration of the attribute type.
- It appends a resource route for the model to the `routes/web.php` file. By default, it assumes the `auth` middleware will be used.
- It creates a resource controller for the model with sensible default index, create, store, edit, update, and delete methods.
- It creates feature tests for all CRUD actions (viewing index/show/create/edit pages, storing a new model, updating an existing model, and deleting a model). It tests that only logged in users are able to perform these actions.
- It creates views for the create, edit, index, and show pages. The create/edit pages contain labeled inputs for each attributed (again, presumed to be text fields by default). The edit form displays existing attributes.
- It migrates the database

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity69

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

12

Last Release

2823d ago

Major Versions

0.1.7 → 1.0.02018-08-20

### Community

Maintainers

![](https://www.gravatar.com/avatar/11ca5a908b946371df54119caf99782325ba4c93b5307b26eb9c53d11ba729d3?d=identicon)[jasrys](/maintainers/jasrys)

---

Top Contributors

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

---

Tags

crudgeneratorlaravel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jasrys-laravel-crud/health.svg)

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

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

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