PHPackages                             dd4you/dpanel-plus - 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. dd4you/dpanel-plus

ActiveLibrary[Admin Panels](/categories/admin)

dd4you/dpanel-plus
==================

This is Admin Panel By DD4You.in with tailwind css. It's help to create admin panel with prebuild login system

v2.0.0(2y ago)048MITBlade

Since Apr 14Pushed 2y ago1 watchersCompare

[ Source](https://github.com/DD4You/laravel-dpanel-plus)[ Packagist](https://packagist.org/packages/dd4you/dpanel-plus)[ RSS](/packages/dd4you-dpanel-plus/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (3)Versions (11)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/05512316c9a4fafb2525ed35a526ea3836fd3450589e54d77cafc10319a4b91c/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f76)](https://packagist.org/packages/dd4you/dpanel-plus)[![Daily Downloads](https://camo.githubusercontent.com/c74a94e068b8243d08349c30c8b1f503fb98c8b78d74fb3b6ed3f282f034fcfe/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f642f6461696c79)](https://packagist.org/packages/dd4you/dpanel-plus)[![Monthly Downloads](https://camo.githubusercontent.com/83617c0bcb000f1174e4762ecf4bb853945dd09485ecc860c16974a87a14cf48/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f642f6d6f6e74686c79)](https://packagist.org/packages/dd4you/dpanel-plus)[![Total Downloads](https://camo.githubusercontent.com/2d457f460f46fd9d8af8ab54ece7b1d670f725826b951c5aec3178e7768680f9/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f646f776e6c6f616473)](https://packagist.org/packages/dd4you/dpanel-plus)[![License](https://camo.githubusercontent.com/e2c4400bd680c5e41277e4e764fa727341984d2c49c6172eca143d3ef437ba26/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f6c6963656e7365)](https://packagist.org/packages/dd4you/dpanel-plus)[![PHP Version Require](https://camo.githubusercontent.com/1d0087bc27b6df6bd369942826efa1da6b9becc5cb074a923d75a9355d485217/687474703a2f2f706f7365722e707567782e6f72672f646434796f752f6470616e656c2d706c75732f726571756972652f706870)](https://packagist.org/packages/dd4you/dpanel-plus)

DPanel Plus Package with [Global Setting](#global-settings) and [Laravel Dynamic Search](#laravel-dynamic-search)
=================================================================================================================

[](#dpanel-plus-package-with-global-setting-and-laravel-dynamic-search)

You can follow this video tutorial as well for installation.
------------------------------------------------------------

[](#you-can-follow-this-video-tutorial-as-well-for-installation)

[![](https://camo.githubusercontent.com/59f348548389fa7c2e8ac0851e157894681bd34d359bda655318e2671a0b5113/68747470733a2f2f696d672e796f75747562652e636f6d2f76692f4d59745564542d765042492f302e6a7067)](https://youtu.be/MYtUdT-vPBI)

Watch Other Lavavel tutorial here
---------------------------------

[](#watch-other-lavavel-tutorial-here)

[![](https://camo.githubusercontent.com/59f348548389fa7c2e8ac0851e157894681bd34d359bda655318e2671a0b5113/68747470733a2f2f696d672e796f75747562652e636f6d2f76692f4d59745564542d765042492f302e6a7067)](https://www.youtube.com/channel/UCJow0oaJRC3dWIXIdVcm6Qg?sub_confirmation=1))

This is modern Admin Panel developed By DD4You.in with tailwind css. It's help to create admin panel with prebuild login system with multi role and permission
--------------------------------------------------------------------------------------------------------------------------------------------------------------

[](#this-is-modern-admin-panel-developed-by-dd4youin-with-tailwind-css-its-help-to-create-admin-panel-with-prebuild-login-system-with-multi-role-and-permission)

[![dpanel](https://user-images.githubusercontent.com/41217230/232043577-f93a0300-ced3-49b9-b97a-51176542816d.png)](https://user-images.githubusercontent.com/41217230/232043577-f93a0300-ced3-49b9-b97a-51176542816d.png)

Install Package via composer

```
composer require dd4you/dpanel-plus

```

Publish

```
php artisan dd4you:install-dpanel

```

Add Seeder

```
$this->call(\DD4You\Dpanel\database\seeders\UserSeeder::class);

```

Install Tailwind Css if not install

```
https://tailwindcss.com/docs/guides/laravel

```

Add Below code in tailwind.config.js

```
"./vendor/dd4you/dpanel-plus/src/resources/**/*.blade.php",

```

Migrate the database

```
php artisan migrate
```

Add below code in your AuthServiceProvider

```
use Illuminate\Support\Facades\Gate;

............ Inside boot method ............

Gate::before(function ($user, $ability) {
    return $user->hasRole('super-admin') ? true : null;
});
```

Default Dpanel Login Details
----------------------------

[](#default-dpanel-login-details)

```
URL: your_domain/dpanel

```

### Super Admin

[](#super-admin)

```
Email: su@localhost.com
Password: suadmin

```

### Admin

[](#admin)

```
Email: dpanel@localhost.com
Password: dpanel

```

Global Settings
===============

[](#global-settings)

Store general settings like website name, logo url, contacts in the database easily. Everything is cached, so no extra query is done. You can also get fresh values from the database directly if you need.

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

[](#installation)

Publish

```
php artisan dd4you:install-lgs
```

Migrate the database

```
php artisan migrate
```

I have also added seeder for some general settings a website needs. Seed the database using command:

```
php artisan db:seed --class=SettingsSeeder

```

Usage/Examples
--------------

[](#usageexamples)

To store settings on database

```
settings()->set(
        'key',
        ['label'=>'Label Name','value'=>'Value Name']
    );

```

You can also set multiple settings at once

```
settings()->set([
        'key1'=>[
            'label'=>'Label Name',
            'value'=>'Value Name',
            'type'=>settings()->fileType()
            ],
        'key2'=>[
            'label'=>'Label Name',
            'value'=>'Value Name'
            ],
    ]);

```

You can retrieve the settings from cache using any command below

```
settings('key');
settings()->get('key');
settings()->get(['key1', 'key2']);

```

Want the settings directly from database? You can do it,

```
settings('key',true);
settings()->get('key',true);
settings()->get(['key1', 'key2'],true);

```

Getting all the settings stored on database

```
settings()->getAll();

```

You can use the settings on blade as

```
{{ settings('site_name') }}

```

Or, if you have html stored on settings

```
{!! settings('footer_text') !!}
{!! settings('footer_text') Copyright Date('Y') !!}

```

Finally, If you have changed something directly on database, Don't forget to clear the cache.

```
php artisan cache:clear

```

License
-------

[](#license)

[MIT](https://choosealicense.com/licenses/mit/)

Feedback
--------

[](#feedback)

If you have any feedback, please reach out at  or submit a pull request here.

Authors
-------

[](#authors)

- [@dd4you](https://www.github.com/DD4You)

Badges
------

[](#badges)

[![MIT License](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://choosealicense.com/licenses/mit/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

Every ~22 days

Recently: every ~37 days

Total

10

Last Release

930d ago

Major Versions

v1.0.8 → v2.0.02023-10-29

### Community

Maintainers

![](https://www.gravatar.com/avatar/6d73b4fd4e458f8874fda4fbf463e72f42e0a01f7530c8d40db864fef798fd5d?d=identicon)[DD4You](/maintainers/DD4You)

---

Top Contributors

[![vinayrajput05](https://avatars.githubusercontent.com/u/84115475?v=4)](https://github.com/vinayrajput05 "vinayrajput05 (11 commits)")

---

Tags

laraveladmin-paneltailwind cssdpaneldpanel plus

### Embed Badge

![Health badge](/badges/dd4you-dpanel-plus/health.svg)

```
[![Health](https://phpackages.com/badges/dd4you-dpanel-plus/health.svg)](https://phpackages.com/packages/dd4you-dpanel-plus)
```

PHPackages © 2026

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