PHPackages                             wikichua/simplecontrolpanel - 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. wikichua/simplecontrolpanel

ActiveLibrary

wikichua/simplecontrolpanel
===========================

A simple admin control panel for Laravel 6. Forked from kejodion/laravel-admin-panel

3.4.2(5y ago)45202[2 issues](https://github.com/wikichua/simplecontrolpanel/issues)MITPHP

Since Dec 5Pushed 5y ago1 watchersCompare

[ Source](https://github.com/wikichua/simplecontrolpanel)[ Packagist](https://packagist.org/packages/wikichua/simplecontrolpanel)[ Docs](https://github.com/wikichua/simplecontrolpanel)[ RSS](/packages/wikichua-simplecontrolpanel/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (17)Versions (61)Used By (0)

Simple Control Panel
--------------------

[](#simple-control-panel)

Forked from [GitHub](https://github.com/kjjdion/laravel-admin-panel)

Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel which promotes rapid scaffolding &amp; development.

- [Demo](https://lap.kjjdion.com/admin)
- [Screenshots](https://imgur.com/a/12mGWNW)
- [Documentation](https://lap.kjjdion.com/docs)
- [GitHub](https://github.com/kjjdion/laravel-admin-panel)

Features:

- More enhancement

Packages used:

- [Laravel 5.7, 5.8 &amp; Above](https://laravel.com/)
- [Laravel Datatables](https://github.com/yajra/laravel-datatables)
- [Laravel Nestedset](https://github.com/lazychaser/laravel-nestedset)
- [Parsedown](http://parsedown.org/)
- [SEOTools](https://github.com/artesaos/seotools)
- [Log Viewer](https://github.com/rap2hpoutre/laravel-log-viewer)
- [Fast Excel](https://github.com/rap2hpoutre/fast-excel)

Assets used:

- Custom admin panel layout (inspired by [Nova](https://nova.laravel.com))
- [Bootstrap 4](https://getbootstrap.com)
- [Datatables](https://datatables.net) (with some tweaks for a better UX)
- [FontAwesome 5](https://fontawesome.com)

### Installation

[](#installation)

Require via composer:

```
composer require wikichua/simplecontrolpanel @dev

```

For Laravel 7.x

```
composer require laravel/ui

```

Publish install files:

```
php artisan vendor:publish --tag=lap.general

```

General install including:

- public
- lang
- layouts
- auth
- backend
- users

Publish advanced files (1 by 1):

```
php artisan vendor:publish --tag=lap.config
php artisan vendor:publish --tag=lap.seo.config
php artisan vendor:publish --tag=lap.public
php artisan vendor:publish --tag=lap.lang
php artisan vendor:publish --tag=lap.layouts
php artisan vendor:publish --tag=lap.auth.view
php artisan vendor:publish --tag=lap.backend.view
php artisan vendor:publish --tag=lap.users.view

```

Publish all migrations files:

```
php artisan vendor:publish --tag=lap.migrations

```

Publish all stubs files:

```
php artisan vendor:publish --tag=lap.stubs

```

Publish all views files:

```
php artisan vendor:publish --tag=lap.all.view

```

Publish admin route files:

```
php artisan vendor:publish --tag=lap.admin.route

```

Add the `AdminUser`, `DynamicFillable`, and `UserTimezone` traits to your `User` model:

```
use Wikichua\Simplecontrolpanel\Traits\AdminUser;
use Wikichua\Simplecontrolpanel\Traits\DynamicFillable;
use Wikichua\Simplecontrolpanel\Traits\UserTimezone;

class User extends Authenticatable
{
    use Notifiable, AdminUser, DynamicFillable, UserTimezone;

```

Add this in your controller.php use \\Wikichua\\Simplecontrolpanel\\Traits\\Controller;

```
class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
    use \Wikichua\Simplecontrolpanel\Traits\Controller;

```

Run the migrations:

```
php artisan migrate

```

### Alternative installation:

[](#alternative-installation)

Install laravel:

```
composer create-project laravel/laravel --prefer-dist appName

```

Create directories in terminal:

```
cd appName; mkdir packages; cd packages; mkdir wikichua; cd wikichua; git clone https://github.com/wikichua/simplecontrolpanel.git

```

Add this in your composer.json under scripts section:

```
"require-dev": {
    "wikichua/simplecontrolpanel": "*"
},

"repositories": {
    "wikichua/simplecontrolpanel": {
        "type": "path",
        "url": "/path/to/your/appName/packages/wikichua/simplecontrolpanel"
    }
}

```

### Alternative installation 2:

[](#alternative-installation-2)

Need packager to ease your work

```
$ composer require jeroen-g/laravel-packager --dev

```

Import package from github

```
$ php artisan packager:git git@github.com:wikichua/simplecontrolpanel.git

```

Add this in your composer.json under scripts section:

```
"require-dev": {
    "wikichua/simplecontrolpanel": "*"
},

```

Run composer update

### Logging In

[](#logging-in)

Visit `(APP_URL)/admin` to access the admin panel.

The default admin login is:

```
Email Address: admin@example.com
Password: admin123

```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 64.9% 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 ~9 days

Recently: every ~2 days

Total

60

Last Release

2189d ago

Major Versions

1.0.5 → 2.0.12019-10-01

2.2.0 → 3.0.02019-10-08

### Community

Maintainers

![](https://www.gravatar.com/avatar/209854cbd063f50c1804d196f18787fb6ee5d9c2ca1410b36c6f52f8900be35d?d=identicon)[wikichua](/maintainers/wikichua)

---

Top Contributors

[![wikichua](https://avatars.githubusercontent.com/u/1870466?v=4)](https://github.com/wikichua "wikichua (24 commits)")[![Khludev](https://avatars.githubusercontent.com/u/47009408?v=4)](https://github.com/Khludev "Khludev (13 commits)")

---

Tags

laravelsimplecontrolpanel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/wikichua-simplecontrolpanel/health.svg)

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[microweber/microweber

New generation CMS with drag and drop

3.4k13.8k1](/packages/microweber-microweber)[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

28618.2k3](/packages/sebastienheyd-boilerplate)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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