PHPackages                             lupka/crudder - 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. lupka/crudder

ActivePackage[Admin Panels](/categories/admin)

lupka/crudder
=============

Dead simple admin panels for Laravel.

0.0.1(9y ago)213MITPHP

Since Jan 16Pushed 9y ago1 watchersCompare

[ Source](https://github.com/lupka/crudder)[ Packagist](https://packagist.org/packages/lupka/crudder)[ RSS](/packages/lupka-crudder/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (2)Used By (0)

### This is still under development, DO NOT USE IN PRODUCTION

[](#this-is-still-under-development-do-not-use-in-production)

Crudder
=======

[](#crudder)

\[[![icense](https://camo.githubusercontent.com/f251623e510f5909f16ae3f4e6e548dac11340b9fde1a99be26b015b39272c00/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c6174)](https://camo.githubusercontent.com/f251623e510f5909f16ae3f4e6e548dac11340b9fde1a99be26b015b39272c00/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c6174)\](LICENSE)

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

[](#installation)

### 1: Install via Composer

[](#1-install-via-composer)

```
composer require lupka/crudder

```

### 2: Add Service Provider

[](#2-add-service-provider)

Add the new provider to the `providers` array of `config/app.php`:

```
'providers' => [
    // ...
    Lupka\Crudder\CrudderServiceProvider::class,
    // ...
],

```

### 3: Add Facade

[](#3-add-facade)

Add the new Crudder alias to the `aliases` array of `config/app.php`:

```
'aliases' => [
    // ...
    'Crudder' => Lupka\Crudder\CrudderFacade::class,
    // ...
],

```

### 4: Add routes

[](#4-add-routes)

Add a call to `Crudder::routes()` wherever you want within your routes file. The example below uses a route group with a prefix and auth middleware:

```
Route::group(['prefix' => 'crudder', 'middleware' => 'auth'], function(){
    Crudder::routes();
});

```

### 5: Publish config file

[](#5-publish-config-file)

Publish the Crudder config file by running the following command:

```
php artisan vendor:publish --tag=config

```

Configuration
-------------

[](#configuration)

### Basic Setup

[](#basic-setup)

All you need to do to get started is enter the class name of the Eloquent Model you want to have an admin for in the `crudder.php` config file.

```
    'models' => [
        'App\BlogPost' => []
    ]

```

Crudder will use a basic form based on the field types in your database.

Tips
----

[](#tips)

If you want to modify values programmatically before/after saving, I recommend using observers:

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

3452d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/852553?v=4)[Alex Chalupka](/maintainers/lupka)[@lupka](https://github.com/lupka)

---

Top Contributors

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

---

Tags

laravelcrudmodelscrudder

### Embed Badge

![Health badge](/badges/lupka-crudder/health.svg)

```
[![Health](https://phpackages.com/badges/lupka-crudder/health.svg)](https://phpackages.com/packages/lupka-crudder)
```

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.6M217](/packages/backpack-crud)[dcat-plus/laravel-admin

dcat-plus admin

1433.7k9](/packages/dcat-plus-laravel-admin)[api-platform/laravel

API Platform support for Laravel

59156.3k11](/packages/api-platform-laravel)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[takielias/tablar-crud-generator

Laravel Tablar Crud Generator based on https://github.com/takielias/tablar

316.1k](/packages/takielias-tablar-crud-generator)[printnow/laravel-admin

Dcat admin 永久分叉版 / 支持 Laravel 10-13, PHP 版本限制 &gt;= 8.1（支持 PHP 8.5）

452.4k](/packages/printnow-laravel-admin)

PHPackages © 2026

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