PHPackages                             scolib/admin - 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. scolib/admin

ActiveLibrary[Admin Panels](/categories/admin)

scolib/admin
============

Admin package for Laravel 5.\*, based on Vue 2.\* and AdminLTE

v1.0.0(8y ago)101322MITPHPPHP &gt;=7.0.0

Since Mar 28Pushed 7y ago2 watchersCompare

[ Source](https://github.com/ScoLib/admin)[ Packagist](https://packagist.org/packages/scolib/admin)[ Docs](https://github.com/ScoLib/admin)[ RSS](/packages/scolib-admin/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (7)Versions (4)Used By (0)

Sco-Admin
=========

[](#sco-admin)

[![StyleCI](https://camo.githubusercontent.com/f190126974dcf206083ae1231f3fb65935ac443ef60e6851396d3b81d14c7a9f/68747470733a2f2f7374796c6563692e696f2f7265706f732f38323433353139382f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/82435198)[![Latest Version on Packagist](https://camo.githubusercontent.com/47b0768a422424f81976870b7186907be7eb6bf506cbe99401341e494aa965a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f53636f4c69622f61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ScoLib/admin)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/ScoLib/admin/blob/master/LICENSE.md)[![Build Status](https://camo.githubusercontent.com/f28b53e0b66faa60aabe281703b44708024c9cbc8ee9852dbf21d85534bdb5f8/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f53636f4c69622f61646d696e2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/ScoLib/admin)[![Coverage Status](https://camo.githubusercontent.com/2cf919c1db9c705320cb92f1ef3fbecd224a4390a4697411407b8b37bdfe096c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f53636f4c69622f61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ScoLib/admin/?branch=master)[![Quality Score](https://camo.githubusercontent.com/87b320d146dfc3e3bcf88d4e6febc88850aee8fb76f5a7a3e6b48f5208b47897/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f53636f4c69622f61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/ScoLib/admin)[![Total Downloads](https://camo.githubusercontent.com/e3707db4b7a292a1a3bf7242b67f6029693453da44ecc5c062759469c1cefed6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f53636f4c69622f61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ScoLib/admin)

`Sco-Admin` is an administrative interface builder for [`Laravel`](http://laravel.com/).

The frontend is based on [Element-UI](https://github.com/ElemeFE/element) and [AdminLTE](https://github.com/almasaeed2010/AdminLTE)

Inspired by [SleepingOwlAdmin](https://github.com/LaravelRUS/SleepingOwlAdmin) , [FrozenNode/Laravel-Administrator](https://github.com/FrozenNode/Laravel-Administrator) and [Voyager](https://github.com/the-control-group/voyager)

Install
-------

[](#install)

### Composer

[](#composer)

require package：

```
$ composer require scolib/admin
```

### Artisan

[](#artisan)

Run install command:

```
$ php artisan admin:install
```

### Install [`babel-plugin-transform-vue-jsx`](https://github.com/vuejs/babel-plugin-transform-vue-jsx)

[](#install-babel-plugin-transform-vue-jsx)

### NPM

[](#npm)

```
$ npm install\
  bootstrap\
  element-ui\
  font-awesome\
  jquery-slimscroll\
  less\
  less-loader\
  nestable2\
  v-tinymce\
  v-viewer\
  vue-i18n\
  vue-progressbar\
  vue-router\
  vue-simplemde\
  vuex\
  --save-dev
```

In your `webpack.mix.js`:

```
// mix.sourceMaps();

mix.webpackConfig({
    output: {
        chunkFilename: `js/[name]${
            mix.inProduction() ? '.[chunkhash].chunk.js' : '.chunk.js'
            }`,
        publicPath: '/',
    }
})
    .js('resources/assets/vendor/admin/main.js', 'public/js/admin.js')
    .autoload({
        jquery: ['$', 'window.jQuery', 'jQuery', 'jquery'],
        vue: 'Vue'
    })
    .less(
        'resources/assets/vendor/admin/less/admin.less',
        'public/css/admin.css'
    )
    .copyDirectory('node_modules/tinymce/plugins/visualblocks/css', 'public/js/tinymce/plugins/visualblocks/css')
    .copyDirectory('node_modules/tinymce/plugins/emoticons/img', 'public/js/tinymce/plugins/emoticons/img')

if (mix.inProduction()) {
    mix.version();
}
```

```
$ npm install
$ npm run prod
```

Usage
-----

[](#usage)

[Document](http://scoadmin.scophp.com/)

Change log
----------

[](#change-log)

[CHANGELOG](CHANGELOG.en.md) | [更新日志](CHANGELOG.zh-CN.md)

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

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

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [klgd](https://github.com/klgd)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~0 days

Total

2

Last Release

2971d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b6a8a8c087979593079b77f376d3b33bf3b0669dc9273370753772bfd88207e8?d=identicon)[klgd](/maintainers/klgd)

---

Top Contributors

[![klgd](https://avatars.githubusercontent.com/u/8554422?v=4)](https://github.com/klgd "klgd (364 commits)")

---

Tags

adminbackendlaravellaravel-adminscoscolibadminScoLib

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/scolib-admin/health.svg)

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

###  Alternatives

[laravelrus/sleepingowl

Administrative interface builder for Laravel.

810219.6k3](/packages/laravelrus-sleepingowl)

PHPackages © 2026

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