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

ActiveLibrary[Admin Panels](/categories/admin)

lrcurso/admin-laravel
=====================

Package for laravel

v6.0.2(5y ago)22.7kMITBladePHP ^7.2|8.\*CI failing

Since Jul 10Pushed 2y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (3)Versions (45)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/abf7cd4c9a08d916eeb06122b8fe9b57023858629d78fa2b41ba2444d4296c81/68747470733a2f2f706f7365722e707567782e6f72672f6c72637572736f2f61646d696e2d6c61726176656c2f762f737461626c65)](https://packagist.org/packages/lrcurso/admin-laravel)[![Total Downloads](https://camo.githubusercontent.com/da36d59dd78b68cd8a885f6827fed18fea2144a1346bde86656279ee601e2130/68747470733a2f2f706f7365722e707567782e6f72672f6c72637572736f2f61646d696e2d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/lrcurso/admin-laravel)[![Latest Unstable Version](https://camo.githubusercontent.com/5acc2b0a153629eef30625481202d8c5baf09da1faf0590e019504af90526794/68747470733a2f2f706f7365722e707567782e6f72672f6c72637572736f2f61646d696e2d6c61726176656c2f762f756e737461626c65)](https://packagist.org/packages/lrcurso/admin-laravel)[![License](https://camo.githubusercontent.com/8586b2551391b512540daa9eaa87a84f69feb2276acb969675b42dedd5840ba1/68747470733a2f2f706f7365722e707567782e6f72672f6c72637572736f2f61646d696e2d6c61726176656c2f6c6963656e7365)](https://packagist.org/packages/lrcurso/admin-laravel)[![composer.lock](https://camo.githubusercontent.com/1850ed243f1c0423a0b369107d167942e903220eefabe517bc2748c996b35976/68747470733a2f2f706f7365722e707567782e6f72672f6c72637572736f2f61646d696e2d6c61726176656c2f636f6d706f7365726c6f636b)](https://packagist.org/packages/lrcurso/admin-laravel)[![Coverage Status](https://camo.githubusercontent.com/3a225117f73923a2e3892962f2a88a912574533224223235a90859fc4cf01b05/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f4c522d437572736f2f61646d696e2d6c61726176656c2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/LR-Curso/admin-laravel?branch=master)[![Build Status](https://camo.githubusercontent.com/03bb1f4fa75868faf20089bb92ba1ddff19c61b82f1aba41409558b3abe6f85c/68747470733a2f2f7472617669732d63692e6f72672f4c522d437572736f2f61646d696e2d6c61726176656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/LR-Curso/admin-laravel)[![Build Status](https://camo.githubusercontent.com/5b6d0f150098ea4836160e870827e43edf60f0478b35a85d6d5ba3f9bc6579df/68747470733a2f2f7374796c6563692e696f2f7265706f732f36333030393333312f736869656c64)](https://styleci.io/repos/63009331)[![Issue Count](https://camo.githubusercontent.com/7d48962916f99256cc63c657781a4b7676e5bc86b8e53a090ab1aa4d7fd3ea47/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f4c522d437572736f2f61646d696e2d6c61726176656c2f6261646765732f69737375655f636f756e742e737667)](https://codeclimate.com/github/LR-Curso/admin-laravel)

Admin Laravel
=============

[](#admin-laravel)

Generate admin for Laravel

[![Feature Requests](https://camo.githubusercontent.com/aa81f8dc417a9455dbf1f629d8325727b6a7293655bc22ee5790054f7c4ea17c/687474703a2f2f666561746875622e636f6d2f4c522d437572736f2f61646d696e2d6c61726176656c3f666f726d61743d737667)](http://feathub.com/LR-Curso/admin-laravel)

\###Installation

```
composer require lrcurso/admin-laravel

```

Or manually by modifying `composer.json` file:

```
{
    "require": {
        "lrcurso/admin-laravel": "0.*"
    }
}
```

run `composer install`

Then add Service provider to `config/app.php`

```
    'providers' => [
        // ...
        Lrcurso\Admin\Providers\AdminServiceProvider::class,
        Kris\LaravelFormBuilder\FormBuilderServiceProvider::class,
    ]
```

And Facade (also in `config/app.php`)

```
    'aliases' => [
        // ...
        'FormBuilder' => Kris\LaravelFormBuilder\Facades\FormBuilder::class
    ]
```

And add Middleware to `app/Http/Kernel.php`

```
    $routeMiddleware => [
        //...
        'auth.admin' => \Lrcurso\Admin\Middleware\Authenticate::class,
    ]
```

Last step:

```
    php artisan vendor:publish
```

\##TODO

- create Units Tests
- create documentation (how to use)
- add config for modifier the dashboard home (default: "DashBoardControler@index")
- add config for modifier the route root (default: "\\admin")

###  Health Score

33

—

LowBetter than 74% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity71

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

Recently: every ~263 days

Total

41

Last Release

1949d ago

Major Versions

0.4.4 → v1.0.02016-12-15

v1.1 → v5.02018-02-01

v5.6.3 → v6.0.02020-03-10

PHP version history (3 changes)0.3.1PHP &gt;=7.0

v6.0.1PHP ^7.2

v6.0.2PHP ^7.2|8.\*

### Community

Maintainers

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

---

Top Contributors

[![LeandroRolim](https://avatars.githubusercontent.com/u/595489?v=4)](https://github.com/LeandroRolim "LeandroRolim (89 commits)")

### Embed Badge

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

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

###  Alternatives

[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[slowlyo/owl-admin

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

61214.2k26](/packages/slowlyo-owl-admin)[pragmarx/datatables

Server-side handler of DataTables Jquery Plugin for Laravel 4

16307.7k14](/packages/pragmarx-datatables)[takielias/tablar-kit

The Elegance of Tablar Dashboard

413.4k](/packages/takielias-tablar-kit)[prismaticoder/maker-checker-laravel

A package for simplifying the integration of a maker-checker approval process to your Laravel application.

232.7k](/packages/prismaticoder-maker-checker-laravel)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)

PHPackages © 2026

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