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

ActiveLibrary[Admin Panels](/categories/admin)

appzcoder/laravel-admin
=======================

Laravel Admin Panel

v3.3.5(3y ago)745106.6k↑67.6%269[9 issues](https://github.com/sohelamin/laravel-admin/issues)[1 PRs](https://github.com/sohelamin/laravel-admin/pulls)MITPHPPHP ^7.1|^8.0

Since Jun 10Pushed 3y ago53 watchersCompare

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

READMEChangelog (10)Dependencies (4)Versions (20)Used By (0)

Laravel Admin Panel
===================

[](#laravel-admin-panel)

An admin panel for managing users, roles, permissions &amp; crud.

### Requirements

[](#requirements)

```
Laravel >=5.5
PHP >= 7.0

```

Features
--------

[](#features)

- User, Role &amp; Permission Manager
- CRUD Generator
- Activity Log
- Page CRUD
- Settings

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

[](#installation)

1. Run

    ```
    composer require appzcoder/laravel-admin

    ```
2. Install the admin package.

    ```
    php artisan laravel-admin:install

    ```

    > Service provider will be discovered automatically.
3. Make sure your user model's has a `HasRoles` trait **app/Models/User.php**.

    ```
    class User extends Authenticatable
    {
        use Notifiable, HasRoles;

        ...
    ```
4. You can generate CRUD easily through generator tool now.

Note: If you are using Laravel 7+ then scaffold the authentication with bootstrap for a better experience.

Usage
-----

[](#usage)

1. Create some permissions.
2. Create some roles.
3. Assign permission(s) to role.
4. Create user(s) with role.
5. For checking authenticated user's role see below:

    ```
    // Add role middleware in app/Http/Kernel.php
    protected $routeMiddleware = [
        ...
        'role' => \App\Http\Middleware\CheckRole::class,
    ];
    ```

    ```
    // Check role anywhere
    if (Auth::check() && Auth::user()->hasRole('admin')) {
        // Do admin stuff here
    } else {
        // Do nothing
    }

    // Check role in route middleware
    Route::group(['namespace' => 'Admin', 'prefix' => 'admin', 'middleware' => ['auth', 'role:admin']], function () {
       Route::get('/', ['uses' => 'AdminController@index']);
    });

    // Check permission in route middleware
    Route::group(['namespace' => 'Admin', 'prefix' => 'admin', 'middleware' => ['auth', 'can:write_user']], function () {
       Route::get('/', ['uses' => 'AdminController@index']);
    });
    ```
6. For checking permissions see below:

    ```
    if ($user->can('permission-name')) {
        // Do something
    }
    ```

Learn more about ACL from [here](https://laravel.com/docs/master/authorization)

For activity log please read `spatie/laravel-activitylog` [docs](https://docs.spatie.be/laravel-activitylog/v2/introduction)

Screenshots
-----------

[](#screenshots)

[![users](https://user-images.githubusercontent.com/1708683/43477093-1ac08d42-951c-11e8-8217-00aedc19b28d.png)](https://user-images.githubusercontent.com/1708683/43477093-1ac08d42-951c-11e8-8217-00aedc19b28d.png)

[![activity log](https://user-images.githubusercontent.com/1708683/43477154-426d849e-951c-11e8-8682-ac1950114a5a.png)](https://user-images.githubusercontent.com/1708683/43477154-426d849e-951c-11e8-8682-ac1950114a5a.png)

[![generator](https://user-images.githubusercontent.com/1708683/43477174-5381d15e-951c-11e8-9f86-2e45acd38f08.png)](https://user-images.githubusercontent.com/1708683/43477174-5381d15e-951c-11e8-9f86-2e45acd38f08.png)

[![settings](https://user-images.githubusercontent.com/1708683/43679408-67b724d0-9846-11e8-8eb0-49e04c449ee3.png)](https://user-images.githubusercontent.com/1708683/43679408-67b724d0-9846-11e8-8eb0-49e04c449ee3.png)

Author
------

[](#author)

[Sohel Amin](http://www.sohelamin.com) 📧 [Email Me](mailto:sohelamincse@gmail.com)

License
-------

[](#license)

This project is licensed under the MIT License - see the [License File](LICENSE) for details

###  Health Score

49

—

FairBetter than 94% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity54

Moderate usage in the ecosystem

Community28

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 91.2% 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 ~111 days

Recently: every ~180 days

Total

18

Last Release

1424d ago

Major Versions

v1.0.4 → v2.0.02017-12-17

v2.1.1 → v3.0.02018-07-31

PHP version history (3 changes)v1.0.0PHP &gt;=5.5.9

v3.1.0PHP ^7.1

v3.3.3PHP ^7.1|^8.0

### Community

Maintainers

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

---

Top Contributors

[![sohelamin](https://avatars.githubusercontent.com/u/1708683?v=4)](https://github.com/sohelamin "sohelamin (104 commits)")[![goszowski](https://avatars.githubusercontent.com/u/10208931?v=4)](https://github.com/goszowski "goszowski (4 commits)")[![Shipu](https://avatars.githubusercontent.com/u/4118421?v=4)](https://github.com/Shipu "Shipu (2 commits)")[![Omegatcu](https://avatars.githubusercontent.com/u/858438?v=4)](https://github.com/Omegatcu "Omegatcu (1 commits)")[![GregoryHGS](https://avatars.githubusercontent.com/u/17871085?v=4)](https://github.com/GregoryHGS "GregoryHGS (1 commits)")[![EmadAdly](https://avatars.githubusercontent.com/u/5786899?v=4)](https://github.com/EmadAdly "EmadAdly (1 commits)")[![bryant1410](https://avatars.githubusercontent.com/u/3905501?v=4)](https://github.com/bryant1410 "bryant1410 (1 commits)")

---

Tags

laravellaravel-adminlaravel-admin-panelphplaraveladminlaravel-adminlaravel-admin-panel

### Embed Badge

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

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

###  Alternatives

[sebastienheyd/boilerplate

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

29420.2k3](/packages/sebastienheyd-boilerplate)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.9k26](/packages/slowlyo-owl-admin)[lokielse/laravel-admin-generator

An Admin Panel Generator for Laravel 5

712.0k](/packages/lokielse-laravel-admin-generator)

PHPackages © 2026

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