PHPackages                             mark-villudo/laravel-admin-with-user-management - 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. mark-villudo/laravel-admin-with-user-management

ActiveLibrary[Admin Panels](/categories/admin)

mark-villudo/laravel-admin-with-user-management
===============================================

Laravel Admin Panel

09PHP

Since Nov 2Pushed 2y agoCompare

[ Source](https://github.com/MarkVilludo/laravel-admin-with-user-management)[ Packagist](https://packagist.org/packages/mark-villudo/laravel-admin-with-user-management)[ RSS](/packages/mark-villudo-laravel-admin-with-user-management/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)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 mark-villudo/laravel-admin-with-user-management

    ```
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

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity20

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/fc1f7cec431adffc9b18bb57feee89c5955317e8369c82e3cbf2b786dacb225f?d=identicon)[Mark Villudo](/maintainers/Mark%20Villudo)

---

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)")

### Embed Badge

![Health badge](/badges/mark-villudo-laravel-admin-with-user-management/health.svg)

```
[![Health](https://phpackages.com/badges/mark-villudo-laravel-admin-with-user-management/health.svg)](https://phpackages.com/packages/mark-villudo-laravel-admin-with-user-management)
```

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

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