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. [Framework](/categories/framework)
4. /
5. jasrys/laravel-crud

AbandonedLibrary[Framework](/categories/framework)

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 yesterday

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

[laravel/telescope

An elegant debug assistant for the Laravel framework.

5.2k67.8M192](/packages/laravel-telescope)[spiral/roadrunner

RoadRunner: High-performance PHP application server and process manager written in Go and powered with plugins

8.4k12.2M84](/packages/spiral-roadrunner)[nolimits4web/swiper

Most modern mobile touch slider and framework with hardware accelerated transitions

41.8k177.2k1](/packages/nolimits4web-swiper)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[laravel/prompts

Add beautiful and user-friendly forms to your command-line applications.

708181.8M596](/packages/laravel-prompts)[cakephp/chronos

A simple API extension for DateTime.

1.4k47.7M121](/packages/cakephp-chronos)

PHPackages © 2026

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