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

ActiveLibrary

jjanampa/laravel-admin
======================

Laravel admin dashboard

v1.3.0(4y ago)234406MITCSSPHP ^7.1|^8.0

Since Jan 3Pushed 4y ago5 watchersCompare

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

READMEChangelogDependencies (5)Versions (14)Used By (0)

laravel-admin
=============

[](#laravel-admin)

Laravel Admin is a drop-in admin panel package for Laravel which promotes rapid scaffolding &amp; development, uses [Material Dashboard](https://www.creative-tim.com/product/material-dashboard-laravel)

- The project is based on the [Laravel Admin Panel](https://github.com/appzcoder/laravel-admin) and [Material Dashboard Laravel](https://github.com/creativetimofficial/material-dashboard-laravel).
- This package has a modular approach, for which it uses the Laravel module, see the documentation for more information on this approach:
- Installing this package will publish the `Admin` module in the `Modules` folder at the root of your project.

    [![Dashboard](https://user-images.githubusercontent.com/1957176/103500880-7e4ca300-4e1a-11eb-9ac6-77e052d71033.png)](https://user-images.githubusercontent.com/1957176/103500880-7e4ca300-4e1a-11eb-9ac6-77e052d71033.png)

### Requirements

[](#requirements)

```
Laravel >=7
PHP >= 7.0

```

### Features:

[](#features)

1. Admin User, Role &amp; Permission Manager:
2. Activity Log:
3. Page CRUD:
4. Settings:
5. Login, Forgot Password
6. Profile

#### Packages used:

[](#packages-used)

- [Laravel-Modules](https://github.com/nWidart/laravel-modules)
- [Laravel UI](https://github.com/laravel/ui)
- [laravelCollective HTML](https://github.com/LaravelCollective/html)
- [Laravel-activitylog](https://github.com/spatie/laravel-activitylog)

#### Assets used:

[](#assets-used)

- [Bootstrap 4](https://getbootstrap.com)
- [Material Dashboard](https://github.com/creativetimofficial/material-dashboard)

---

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

[](#installation)

After initializing instance of Laravel

1. Autoloading: By default, module classes are not loaded automatically. You can autoload your modules using `psr-4`, add `"Modules\\": "Modules/"` in **composer.json**.

    ```
    {
      "autoload": {
        "psr-4": {
          "App\\": "app/",
          "Modules\\": "Modules/",
        }
      }
    }
    ```

    **Tip: don't forget to run `composer dump-autoload` afterwards.**
2. Run

    ```
    composer require jjanampa/laravel-admin

    ```
3. Install the admin package.

    ```
    php artisan laravel-admin:install

    ```

    > Service provider will be discovered automatically.

    > execute `php artisan laravel-admin:install --force` to force the installation, this process recreate the `Admin` module, removes and recreates the following tables: `admin_users, admin_roles, admin_permissions, admin_permission_role, admin_role_user, pages, settings`

### Logging In

[](#logging-in)

Visit `(APP_URL)/admin` to access the admin panel.

The default admin login is:

```
Email Address: admin@admin.com
Password: secret

```

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:

    ```
    // Check role anywhere
    if (auth('admin')->user()->hasRole('editor')) {
        // Do admin stuff here
    } else {
        // Do nothing
    }

    // Check role in route middleware
    Route::resource('pages', 'Dashboard\PagesController')->middleware('role:editor');
    ```
6. For checking permissions see below:

    ```
    if (auth('admin')->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)

Admin UsersAdmin RolesAdmin Permissions[![Admin Users](https://user-images.githubusercontent.com/1957176/103501360-f36ca800-4e1b-11eb-91b3-ea9995aa9759.png)](https://user-images.githubusercontent.com/1957176/103501360-f36ca800-4e1b-11eb-91b3-ea9995aa9759.png)[![Admin Roles](https://user-images.githubusercontent.com/1957176/103501366-f4053e80-4e1b-11eb-9e7b-e9ccdea6ebf1.png)](https://user-images.githubusercontent.com/1957176/103501366-f4053e80-4e1b-11eb-9e7b-e9ccdea6ebf1.png)[![Admin Permissions](https://user-images.githubusercontent.com/1957176/103501367-f49dd500-4e1b-11eb-8025-302af1fb1709.png)](https://user-images.githubusercontent.com/1957176/103501367-f49dd500-4e1b-11eb-8025-302af1fb1709.png)PagesActivity LogSettings[![Pages](https://user-images.githubusercontent.com/1957176/103501368-f49dd500-4e1b-11eb-93fd-d0189b1c56e3.png)](https://user-images.githubusercontent.com/1957176/103501368-f49dd500-4e1b-11eb-93fd-d0189b1c56e3.png)[![Activity Log](https://user-images.githubusercontent.com/1957176/103501370-f5366b80-4e1b-11eb-9326-9f6d66e23531.png)](https://user-images.githubusercontent.com/1957176/103501370-f5366b80-4e1b-11eb-9326-9f6d66e23531.png)[![Settings](https://user-images.githubusercontent.com/1957176/103501371-f5366b80-4e1b-11eb-8238-15db7a9ec133.png)](https://user-images.githubusercontent.com/1957176/103501371-f5366b80-4e1b-11eb-8238-15db7a9ec133.png)ProfileLoginForgot Password[![Profile](https://user-images.githubusercontent.com/1957176/103501372-f5cf0200-4e1b-11eb-8f33-ee9f7975e42e.png)](https://user-images.githubusercontent.com/1957176/103501372-f5cf0200-4e1b-11eb-8f33-ee9f7975e42e.png)[![Login](https://user-images.githubusercontent.com/1957176/103501373-f6679880-4e1b-11eb-89ca-b12f36ed4ea4.png)](https://user-images.githubusercontent.com/1957176/103501373-f6679880-4e1b-11eb-89ca-b12f36ed4ea4.png)[![Forgot Password](https://user-images.githubusercontent.com/1957176/103501374-f7002f00-4e1b-11eb-89e4-2cbd572bfa53.png)](https://user-images.githubusercontent.com/1957176/103501374-f7002f00-4e1b-11eb-89e4-2cbd572bfa53.png)

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity65

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

Total

13

Last Release

1762d ago

PHP version history (2 changes)v1.0.1PHP ^7.1

v1.1.3PHP ^7.1|^8.0

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

adminadmin-dashboardbootstrap4laravellaravel-modulesmaterial-dashboardphp

### Embed Badge

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

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

###  Alternatives

[beyondcode/laravel-confirm-email

Add email verification to your Laravel projects.

55255.8k](/packages/beyondcode-laravel-confirm-email)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1225.0k10](/packages/fleetbase-core-api)

PHPackages © 2026

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