PHPackages                             khludev/kularapanel - 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. khludev/kularapanel

ActiveLibrary

khludev/kularapanel
===================

A simple admin control panel for Laravel 6. Forked from wikichua/simplecontrolpanel

v4.2.1(5y ago)0991[2 PRs](https://github.com/Khludev/kularapanel/pulls)MITJavaScript

Since Dec 5Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Khludev/kularapanel)[ Packagist](https://packagist.org/packages/khludev/kularapanel)[ Docs](https://github.com/Khludev/kularapanel)[ RSS](/packages/khludev-kularapanel/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (16)Versions (72)Used By (0)

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

[](#simple-control-panel)

Forked from [GitHub](https://github.com/wikichua/simplecontrolpanel)

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

- [Screenshots](https://imgur.com/a/12mGWNW)
- [GitHub](https://github.com/Khludev/kularapanel)

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 khludev/kularapanel master-dev

```

Publish install files:

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

```

General install including:

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

Publish advanced files (1 by 1):

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

```

Publish all migrations files:

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

```

Publish all stubs files:

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

```

Publish all views files:

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

```

Publish admin route files:

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

```

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

```
use Khludev\KuLaraPanel\Traits\AdminUser;
use Khludev\KuLaraPanel\Traits\UserTimezone;

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

```

Add this in your controller.php use \\Khludev\\KuLaraPanel\\Traits\\Controller;

```
class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
    use \Khludev\KuLaraPanel\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 khludev; cd khludev; git clone https://github.com/khludev/kularapanel.git

```

Add this in your composer.json under scripts section:

```
"require-dev": {
    "khludev/kularapanel": "*"
},

"repositories": {
    "khludev/kularapanel": {
        "type": "path",
        "url": "/path/to/your/appName/packages/khludev/kularapanel"
    }
}

```

### 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:khludev/kularapanel.git

```

Add this in your composer.json under scripts section:

```
"require-dev": {
    "khludev/kularapanel": "*"
},

```

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

33

—

LowBetter than 74% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity76

Established project with proven stability

 Bus Factor1

Top contributor holds 74.7% 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 ~12 days

Recently: every ~20 days

Total

69

Last Release

1860d ago

Major Versions

1.0.5 → 2.0.12019-10-01

2.1.4 → 3.0.02019-10-08

2.2.0 → 3.0.12019-10-09

v2.1.1 → v4.0.02020-04-10

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/87077035?v=4)[ku-dev](/maintainers/ku-dev)[@ku-dev](https://github.com/ku-dev)

---

Top Contributors

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

---

Tags

laravelKuLaraPanel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/khludev-kularapanel/health.svg)

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

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

UnoPim Laravel PIM

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

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

28618.2k3](/packages/sebastienheyd-boilerplate)[yajra/laravel-datatables-fractal

Laravel DataTables Fractal Plugin.

966.9M29](/packages/yajra-laravel-datatables-fractal)[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)[lms-laravel/lms-laravel

The Laravel Framework.

4981.8k](/packages/lms-laravel-lms-laravel)

PHPackages © 2026

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