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

ActiveLibrary[Admin Panels](/categories/admin)

mrzeta/admin
============

Laravel Admin Package

1.1(10y ago)0201BSD-3-ClauseJavaScriptPHP &gt;=5.5.9

Since May 27Pushed 10y ago1 watchersCompare

[ Source](https://github.com/mrzeta/admin)[ Packagist](https://packagist.org/packages/mrzeta/admin)[ RSS](/packages/mrzeta-admin/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (8)Versions (3)Used By (0)

Simple Administrator Package for Laravel 5
------------------------------------------

[](#simple-administrator-package-for-laravel-5)

[![Build Status](https://camo.githubusercontent.com/cde70c342f69331c168265e501fcfd06896fa02aad6b8c1debc4d912b16c399e/68747470733a2f2f7472617669732d63692e6f72672f70696e67706f6e672d6c6162732f61646d696e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/pingpong-labs/admin)[![Latest Stable Version](https://camo.githubusercontent.com/d9eee772fbb4305c5562526b407aa5717317e9bd303f9046b258b2e53bb8d748/68747470733a2f2f706f7365722e707567782e6f72672f70696e67706f6e672f61646d696e2f762f737461626c652e737667)](https://packagist.org/packages/pingpong/admin) [![Total Downloads](https://camo.githubusercontent.com/910378bc038dd1cc6b7b1686233e155f9c002243df849b8d151defdf1ddf4a03/68747470733a2f2f706f7365722e707567782e6f72672f70696e67706f6e672f61646d696e2f646f776e6c6f6164732e737667)](https://packagist.org/packages/pingpong/admin) [![Latest Unstable Version](https://camo.githubusercontent.com/f5043c19c379f0decb4c43458b4351a98cde35fa48b66ae1b481ca9d6b251745/68747470733a2f2f706f7365722e707567782e6f72672f70696e67706f6e672f61646d696e2f762f756e737461626c652e737667)](https://packagist.org/packages/pingpong/admin) [![License](https://camo.githubusercontent.com/9e24f5386e1bccc34a440667c0140d677f27e463e30788020a109dbef58f371d/68747470733a2f2f706f7365722e707567782e6f72672f70696e67706f6e672f61646d696e2f6c6963656e73652e737667)](https://packagist.org/packages/pingpong/admin)[![HHVM Status](https://camo.githubusercontent.com/3adb336c4fa73fc8c403c1bdf9ce5d5aaf3ca3801bd17992276a57cbde2690eb/687474703a2f2f6868766d2e683463632e64652f62616467652f70696e67706f6e672f61646d696e2e737667)](http://hhvm.h4cc.de/package/pingpong/admin)

### Documentation

[](#documentation)

Installation

You can install this package quickly via composer command line by running the following command in your terminal.

```
1: composer create-project laravel/laravel your-project-name --prefer-dist "5.1.*"
2: cd your-project-name
3: composer require mrzeta/admin

```

After the package is installed, we need to add the following service providers to the providers array in config/app.php.

```
// file: config/app.php
return [
    'providers' => [
        Mrzeta\Admin\Providers\SupportServiceProvider::class,
        Mrzeta\Admin\AdminServiceProvider::class,
    ]
];

```

Then we need to update the auth.model config value to Mrzeta\\Admin\\Entities\\User.

```
// file: config/auth.php
return [
   'model' => Mrzeta\Admin\Entities\User::class,
];

```

If you want to use your App\\User model, you can extends the Mrzeta\\Admin\\Entities\\User class to your App\\User or other model class.

```
// file: app/User.php
namespace App;

class User extends \Mrzeta\Admin\Entities\User
{
  //
}

```

Next, publish the package's config and assets by running this following command.

```
php artisan vendor:publish --provider="Mrzeta\Admin\AdminServiceProvider"

```

Next, install the package by running this following command.

```
php artisan admin:install

```

username :

password : suprise

then please visit you website/admin/login

enjoy it 😄

Done

Documentation is located in the [wiki](https://github.com/pingpong-labs/admin/wiki) page.

### Screenshot

[](#screenshot)

[![Build Status](https://raw.githubusercontent.com/pingpong-labs/admin/master/shots/pingpong-admin-shot.png)](https://raw.githubusercontent.com/pingpong-labs/admin/master/shots/pingpong-admin-shot.png)

### License

[](#license)

This package is open-sourced software licensed under [The BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause)

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

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

Total

2

Last Release

3686d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13762268?v=4)[Meetrue](/maintainers/Meetrue)[@Meetrue](https://github.com/Meetrue)

---

Top Contributors

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

---

Tags

backendadminadministratorlaravel5.1mrzeta

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[pingpong/admin

Laravel Admin Package

43023.3k1](/packages/pingpong-admin)[unopim/unopim

UnoPim Laravel PIM

10.5k2.2k](/packages/unopim-unopim)

PHPackages © 2026

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