PHPackages                             nobir/the-backend-wizard - 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. nobir/the-backend-wizard

ActiveLibrary[Admin Panels](/categories/admin)

nobir/the-backend-wizard
========================

This pakage is really a wizard, you can create your admin panel as your need with raw codding. really amaging

v3.0.0(1y ago)317MITCSSPHP ^8.2

Since Oct 5Pushed 1y ago1 watchersCompare

[ Source](https://github.com/md-nobir-hasan/the-backend-wizard)[ Packagist](https://packagist.org/packages/nobir/the-backend-wizard)[ Docs](https://github.com/md-nobir-hasan/the-backend-wizard)[ GitHub Sponsors](https://github.com/nobir)[ RSS](/packages/nobir-the-backend-wizard/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)DependenciesVersions (21)Used By (0)

This pakage is really a wizard, you can create your admin panel as your need with raw codding. really amaging
=============================================================================================================

[](#this-pakage-is-really-a-wizard-you-can-create-your-admin-panel-as-your-need-with-raw-codding-really-amaging)

[![Latest Version on Packagist](https://camo.githubusercontent.com/501da38f30af77fd9681f529d5f00ba85336be093e1b2e78380494051156e5aa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f6269722f7468652d6261636b656e642d77697a6172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nobir/the-backend-wizard)[![GitHub Tests Action Status](https://camo.githubusercontent.com/fa3f00ee9717a5df9c3ae53f5641b857c05fec10aee252d3d4381b75d9c4fafc/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6e6f6269722f7468652d6261636b656e642d77697a6172642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/nobir/the-backend-wizard/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/fe8f6fe58a3db83f466b102420777215e0c15115d924baf4f30cc9c3a989e47f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6e6f6269722f7468652d6261636b656e642d77697a6172642f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/nobir/the-backend-wizard/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/f081b723d8240de2ecc33777e3ac99bca9e54d5fd60e8861e241dd986813454e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f6269722f7468652d6261636b656e642d77697a6172642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nobir/the-backend-wizard)

This pakage is usefull when you want to store and use again and again a admin panel. ..

Rules to setup a module for a specific admin panel
==================================================

[](#rules-to-setup-a-module-for-a-specific-admin-panel)

Diagram: command register =&gt; adding specefic files =&gt; define their location SN: Remember, when you change anything you may change this in two place. with role permission, without role permission.

### Command register: in CommandName file -

[](#command-register-in-commandname-file--)

1. in commands array
2. make a constant property and assign the same command.

### adding files: in admins folders -

[](#adding-files-in-admins-folders--)

1. folder with admin name
2. folder with command name
3. two folder - with-role-permission and without-role-permission.
4. final location - Here setup all file according to their folder

### Define Location:

[](#define-location)

1. find the filelocation file.
2. here there are array with the admin name. and the array structure according to the above folder : admn name =&gt; command name =&gt; with-role-permission, without-role-permission folder =&gt; final location

At last run the command and see the magic.

3. two folder - with-role-permission and without-role-permission.
4. final locatin - Here setup all file according to their folder

Support us
----------

[](#support-us)

[![](https://camo.githubusercontent.com/afebdb78cb8c29cb9c40d1b1bce10ab9aaeb3018b7d28fd5c4b2082b3a040577/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f7468652d6261636b656e642d77697a6172642e6a70673f743d31)](https://spatie.be/github-ad-click/the-backend-wizard)

We invest a lot of resources into creating [best in class open source packages](https://spatie.be/open-source). You can support us by [buying one of our paid products](https://spatie.be/open-source/support-us).

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on [our contact page](https://spatie.be/about-us). We publish all received postcards on [our virtual postcard wall](https://spatie.be/open-source/postcards).

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

[](#installation)

You can install the package via composer:

```
composer require nobir/the-backend-wizard
```

Publish the config file with:

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

This is the contents of the published config file:

```
return [

    /**  Available admins are :-
     *
     * taildash,
     *
     * upcoming more
     */
    'admin_name' => 'taildash',

    /**
     * code slightly change in case of role permission
     *HEre you can set role permission is set or not to the admin panel
     */
    'role_permission' => true,
];
```

Usage
-----

[](#usage)

At first set up a admin panel:

```
php artisan nobir:backend setup
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Md. Nobir Hasan](https://github.com/nobir-hasan)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

32

—

LowBetter than 71% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 97.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 ~1 days

Total

16

Last Release

568d ago

Major Versions

v1.0.7 → 2.0.02024-10-10

v2.8.3 → v3.0.02024-10-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/cac298641b8f2c4b6f5790996af84612e517897bea6daf48e37b6ed2e27a8c18?d=identicon)[md-nobir-hasan](/maintainers/md-nobir-hasan)

---

Top Contributors

[![md-nobir-hasan](https://avatars.githubusercontent.com/u/96966076?v=4)](https://github.com/md-nobir-hasan "md-nobir-hasan (81 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laravelnobirthe-backend-wizard

### Embed Badge

![Health badge](/badges/nobir-the-backend-wizard/health.svg)

```
[![Health](https://phpackages.com/badges/nobir-the-backend-wizard/health.svg)](https://phpackages.com/packages/nobir-the-backend-wizard)
```

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[lara-zeus/tartarus

simple multi tenants

112.6k](/packages/lara-zeus-tartarus)

PHPackages © 2026

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