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

ActiveLibrary[Admin Panels](/categories/admin)

anavallasuiza/laravel-admin
===========================

Simple and extendible Laravel control panel

6.0.0(6y ago)61.2kMITPHPPHP &gt;=7.1

Since Jun 17Pushed 6y ago9 watchersCompare

[ Source](https://github.com/anavallasuiza/laravel-Admin)[ Packagist](https://packagist.org/packages/anavallasuiza/laravel-admin)[ RSS](/packages/anavallasuiza-laravel-admin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (21)Used By (0)

Laravel Admin (On Develop)
==========================

[](#laravel-admin-on-develop)

Starting a base to base admin managemet based in database tables.

Thanks to  to this great Admin CSS/Javascript/HTML Theme.

Installation
============

[](#installation)

Begin by installing this package through Composer.

```
{
    "require": {
        "anavallasuiza/laravel-admin": "5.1.*"
    }
}
```

Configure Laravel Service Providers/Aliases in `config/app.php`:

```
'providers' => [
    ...

    Admin\AdminServiceProvider::class,

    ...
]

'aliases' => [
   ...

   'Input' => Illuminate\Support\Facades\Input::class,

   ...
]
```

Configure `app/Http/Kernel.php` with Middlewares:

```
/**
 * The application's route middleware groups.
 *
 * @var array
 */
protected $middlewareGroups = [
    ...

    'admin' => [
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,
        \Illuminate\View\Middleware\ShareErrorsFromSession::class,
        \App\Http\Middleware\VerifyCsrfToken::class,
    ]
];

protected $routeMiddleware = [
    ...

    'admin.auth' => \Admin\Http\Middleware\Authenticate::class,
    'admin.admin' => \Admin\Http\Middleware\Admin::class,
];
```

Publish the base admin configuration:

```
php artisan vendor:publish
```

Publish admin assets with:

```
php artisan admin:publish:assets
```

Mirate admin tables

```
php artisan migrate
```

And finally, create your first admin user:

```
php artisan admin:user:new --name Admin --user admin --password admin --admin true
```

Check now to login into

Laravel 5.4
-----------

[](#laravel-54)

Gettext admin Translator use `__` functions added now on Laravel 5.4

To use this admin on Laravel &gt;=5.4 add this line to `bootstrap/autoload.php` project file:

```
require __DIR__.'/../vendor/gettext/gettext/src/translator_functions.php'; # Add this line
require __DIR__.'/../vendor/autoload.php';
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity67

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

Recently: every ~236 days

Total

19

Last Release

2418d ago

Major Versions

0.0.1 → 1.0.02015-06-19

1.0.0 → 5.0.02016-02-05

5.2.4 → 6.0.02019-10-04

PHP version history (3 changes)0.0.1PHP &gt;=5.4

5.1.2PHP &gt;=5.5

6.0.0PHP &gt;=7.1

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

laraveladmin

### Embed Badge

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

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

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[slowlyo/owl-admin

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

61214.2k26](/packages/slowlyo-owl-admin)[printnow/laravel-admin

Dcat admin 永久分叉版 / 支持 Laravel 12, PHP 版本限制 &gt;= 8.1（支持 PHP 8.4）

432.0k](/packages/printnow-laravel-admin)

PHPackages © 2026

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