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

Abandoned → [nickdekruijk/admin](/?search=nickdekruijk%2Fadmin)Library[Admin Panels](/categories/admin)

larapages/admin
===============

An easy to implement, lightweight yet complete Laravel 5.5+ admin panel/backend and media/filemanager.

2.0.6(1y ago)51412MITPHPPHP ^8.2CI passing

Since Jul 4Pushed 5mo ago2 watchersCompare

[ Source](https://github.com/nickdekruijk/admin)[ Packagist](https://packagist.org/packages/larapages/admin)[ Docs](http://www.nickdekruijk.nl/packages/admin)[ RSS](/packages/larapages-admin/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (1)Versions (74)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/00d25167bf2457413a45b4abf6d6054fc167168f5f1e657bc7a43106aa9801cf/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b64656b7275696a6b2f61646d696e2f762f737461626c65)](https://packagist.org/packages/nickdekruijk/admin)[![Latest Unstable Version](https://camo.githubusercontent.com/3b616a19f820138d8726b7334d1577f500b2cd9e3c99e22d40a1d4ec6b350966/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b64656b7275696a6b2f61646d696e2f762f756e737461626c65)](https://packagist.org/packages/nickdekruijk/admin)[![Monthly Downloads](https://camo.githubusercontent.com/6984adf9b72302ae461b9cbbc31f8009d2dfc1196a384cbd062186f2870bb5e1/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b64656b7275696a6b2f61646d696e2f642f6d6f6e74686c79)](https://packagist.org/packages/nickdekruijk/admin)[![Total Downloads](https://camo.githubusercontent.com/11dd53cc4aabb21052a9fe8238a6ff5f905653811d8d2c3864dac028d32e1d4c/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b64656b7275696a6b2f61646d696e2f646f776e6c6f616473)](https://packagist.org/packages/nickdekruijk/admin)[![License](https://camo.githubusercontent.com/96302b6d9758a38e7afc3464d1e2794f24c2e762e7dad1f5199ad6a6851652ef/68747470733a2f2f706f7365722e707567782e6f72672f6e69636b64656b7275696a6b2f61646d696e2f6c6963656e7365)](https://packagist.org/packages/nickdekruijk/admin)

Admin
=====

[](#admin)

An easy to implement, lightweight yet complete Laravel 5.5+ admin panel/backend and media/filemanager. Basically it's a web-based content editor for your Laravel models. It's very easy to integrate into your existing Laravel application.

nickdekruijk/admin is the next evolution of [nickdekruijk/larapages](https://github.com/nickdekruijk/larapages) which won't be updated anymore but will remain online for historical reference.

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

[](#installation)

To install the package use

`composer require nickdekruijk/admin`

Configuration
-------------

[](#configuration)

After installing for the first time publish the config file with

`php artisan vendor:publish --tag=config --provider="NickDeKruijk\Admin\ServiceProvider"`

A default config file called `admin.php` will be available in your Laravel `app/config` folder. See this file for more details. Some important configuration options are highlighted below.

### /admin

[](#admin-1)

By default you access admin panel by adding /admin to the URL of your website/application. For example You can change this path by changing the `adminpath` configuration option.

### Add 'admin\_role' to your users

[](#add-admin_role-to-your-users)

Admin uses the auth middleware from Laravel. To determine if a user has permission you need to add a `admin_role` column to your User model and table. You can change the column name with the `role_column` configuration option. A migration is included with the package so you can run `php artisan migrate` to add the column. If you don't want to use the included migration you can disable it by changing the configuration option `role_column_migration` to false.

### Configure modules and roles

[](#configure-modules-and-roles)

The most important configuration option is the `modules` array. The default will get you started but you most likely need to change a lot depending on your application. Each module is identified by a unique slug and it has a [fontawesome.io](https://fontawesome.com/v4.7.0/icons/) icon and opens a view. It also has a title (defaults to the slug) that you can localise (e.g. title\_nl). All other options are view/module specific and will be documented in the future. The slugs are also used to define the permissions in the `roles` array so if you add or remove modules you probably need to change the roles too.

### Login routes

[](#login-routes)

By default Admin will register login and logout routes and use a simple login screen without registration, 'Remember me' or password resets. If your application already uses authentication your routes/web.php file will probably overwrite these routes but you probably want to disable the Admin routes by changing configuration option `auth_routes` to false.

### Creating a new user

[](#creating-a-new-user)

If your application has no users Admin provides an artisan console command to create or update a user with a random password and assign a role.

`php artisan admin:user  []`

Role must match one of the roles defined in the configuration. The default role for a new user is "admin".

FAQ
---

[](#faq)

### How do I localize the validation messages?

[](#how-do-i-localize-the-validation-messages)

You could use the package [arcanedev/laravel-lang](https://github.com/ARCANEDEV/LaravelLang), just run `composer require arcanedev/laravel-lang`.

License
-------

[](#license)

Admin is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance62

Regular maintenance activity

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity90

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 99.8% 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 ~39 days

Recently: every ~95 days

Total

73

Last Release

17d ago

Major Versions

1.13.6 → 2.0.02024-03-18

1.13.9 → 2.0.42024-06-13

PHP version history (2 changes)1.0.0PHP &gt;=7.0.0

2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/0b01fc7c2c39bbe8f87b4afa70ffe1cf2bb787310e1d22fcfed6ae527d4573bb?d=identicon)[nickdekruijk](/maintainers/nickdekruijk)

---

Top Contributors

[![nickdekruijk](https://avatars.githubusercontent.com/u/607302?v=4)](https://github.com/nickdekruijk "nickdekruijk (402 commits)")[![cetorres](https://avatars.githubusercontent.com/u/533661?v=4)](https://github.com/cetorres "cetorres (1 commits)")

---

Tags

laravelcmsbackendadminpanel

### Embed Badge

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

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

###  Alternatives

[serverfireteam/panel

Admin panel for Laravel applications

42532.2k2](/packages/serverfireteam-panel)[serverfireteam/blog

A nice blog system with laravel and laravelpanel

523.1k](/packages/serverfireteam-blog)

PHPackages © 2026

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