PHPackages                             wbe/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. wbe/crud

ActiveProject[Admin Panels](/categories/admin)

wbe/crud
========

Admin panel with CRUD generator, based on Rapyd

2.3.8(8y ago)34411HTMLPHP ^5.6 || ^7.0

Since Jan 6Pushed 7y ago2 watchersCompare

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

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

Laravel Admin Panel generator
=============================

[](#laravel-admin-panel-generator)

### Install in Laravel 5.5

[](#install-in-laravel-55)

1. Config. Replace into `config/database.php`: `'strict' => true`to `'strict' => false`

([laravel/framework#14997 (comment)](https://github.com/laravel/framework/issues/14997#issuecomment-242129087))

2. Add to `config/auth.php`:

    ```
    'guards' => [
        'admin' => [
            'driver' => 'session',
            'provider' => 'admins',
        ],
    ```

    ```
    'providers' => [
        'admins' => [
            'driver' => 'eloquent',
            'model' => Wbe\Crud\Models\ContentTypes\User::class,
        ],
    ```

    ```
    'passwords' => [
        'admins' => [
            'provider' => 'admins',
            'table' => 'password_resets',
            'expire' => 60,
        ],
    ```
3. Add to config/app.php:

```
'providers' => [
        App\Providers\AppServiceProvider::class,
        App\Providers\AuthServiceProvider::class,
        // App\Providers\BroadcastServiceProvider::class,
        App\Providers\EventServiceProvider::class,
        App\Providers\RouteServiceProvider::class,

        Laravel\Socialite\SocialiteServiceProvider::class,
        //Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
        Zofe\Rapyd\RapydServiceProvider::class,
        //Laravel\Cashier\CashierServiceProvider::class,
        Barryvdh\Elfinder\ElfinderServiceProvider::class,

        Wbe\Crud\Models\hrbac\HierarchicalRBAC\HRBACServiceProvider::class,
        Wbe\Crud\CrudServiceProvider::class
```

```
'aliases' => [
        'Form' => Collective\Html\FormFacade::class,
        'Html' => Collective\Html\HtmlFacade::class,
        'Socialite' => Laravel\Socialite\Facades\Socialite::class,
        //'DataEdit' => Zofe\Rapyd\DataEdit\DataEdit::class,
```

4. Add helper.php to composer autoload section:

```
  "files": [
    "vendor/wbe/crud/src/helpers.php"
  ]
```

5. Add to app\\Http\\Kernel.php:

```
protected $middleware = [
        \Illuminate\Session\Middleware\StartSession::class,
        \Wbe\Crud\Middleware\Locale::class,
        \Wbe\Crud\Middleware\LangMiddleware::class,
        \Wbe\Crud\Middleware\AdminAccessMiddleware::class,
```

```
protected $routeMiddleware = [
        'customer' => \Wbe\Crud\Middleware\RedirectIfNotCustomer::class,
        'customer.guest' => \Wbe\Crud\Middleware\RedirectIfCustomer::class,
        'admin' => \Wbe\Crud\Middleware\RedirectIfNotAdmin::class,
        'admin.guest' => \Wbe\Crud\Middleware\RedirectIfAdmin::class,
```

```
 protected $middlewareGroups = [
         'admin'=>[
                     \Illuminate\View\Middleware\ShareErrorsFromSession::class,
                 ],
```

6. Run into console:

```
php artisan vendor:publish --provider="Zofe\Rapyd\RapydServiceProvider"
php artisan vendor:publish --provider="Wbe\Crud\CrudServiceProvider"
php artisan elfinder:publish
php artisan migrate
php artisan db:seed --class="\Wbe\Crud\seeds\DatabaseSeeder"
composer dump-autoload
mkdir public/files/

```

add alias

auto generate alias if in description table exist column alias generate alias willbe from column title

add redirect config configuration from add page

in config/crud.php

'edit\_redirect' =&gt; env('edit\_redirect', 1)

by default 1

1 - redirect to edit page 0 - redirect to data page

Migrations will create tables and fill it with default data. It also contains data insertions into database (like seeding).

---

Finally, admin url:

Login:

Pass: 111111

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 72.6% 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 ~8 days

Recently: every ~21 days

Total

46

Last Release

3092d ago

Major Versions

1.2.5 → 2.02017-08-10

PHP version history (3 changes)1.0.0PHP ^5.6

1.0.7.2PHP &gt;5.6

1.0.7.3PHP ^5.6 || ^7.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/26791802?v=4)[WBE IT-company](/maintainers/it-wbe)[@it-wbe](https://github.com/it-wbe)

---

Top Contributors

[![00rane00](https://avatars.githubusercontent.com/u/5477215?v=4)](https://github.com/00rane00 "00rane00 (114 commits)")[![LanceSpezzate](https://avatars.githubusercontent.com/u/10237764?v=4)](https://github.com/LanceSpezzate "LanceSpezzate (21 commits)")[![reverse123](https://avatars.githubusercontent.com/u/21975182?v=4)](https://github.com/reverse123 "reverse123 (18 commits)")[![DariaYeremina](https://avatars.githubusercontent.com/u/20744093?v=4)](https://github.com/DariaYeremina "DariaYeremina (3 commits)")[![it-wbe](https://avatars.githubusercontent.com/u/26791802?v=4)](https://github.com/it-wbe "it-wbe (1 commits)")

### Embed Badge

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

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

###  Alternatives

[backpack/crud

Quickly build admin interfaces using Laravel, Bootstrap and JavaScript.

3.4k3.7M223](/packages/backpack-crud)[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[exceedone/exment

Management for Product, Client, Contracts, Subscription, ...

28038.8k](/packages/exceedone-exment)[eveseat/web

SeAT Web Interface

2623.5k151](/packages/eveseat-web)

PHPackages © 2026

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