PHPackages                             urameshibr/laravel-adminlte - 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. [Templating &amp; Views](/categories/templating)
4. /
5. urameshibr/laravel-adminlte

ActivePackage[Templating &amp; Views](/categories/templating)

urameshibr/laravel-adminlte
===========================

AdminLTE template applied to Laravel Scaffolding

1.0.0(9y ago)125MITJavaScriptPHP &gt;=5.4.0

Since Oct 6Pushed 9y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

\#Alternative AdminLTE template Laravel package A Laravel package that switch default Laravel scaffolding/boilerplate to AdminLTE template

[![Total Downloads](https://camo.githubusercontent.com/6e68d33ffb5d7639ad0fe16d9c2d11a058d75f59ea43899ca6e79c75450bf881/68747470733a2f2f706f7365722e707567782e6f72672f6163616368612f61646d696e2d6c74652d74656d706c6174652d6c61726176656c2f646f776e6c6f6164732e706e67)](https://packagist.org/packages/acacha/admin-lte-template-laravel)[![Latest Stable Version](https://camo.githubusercontent.com/eefc2a8c75c79f4db9f20b222eda637d36fcdf1f03d8f301db6ddcd5716aa8b7/68747470733a2f2f706f7365722e707567782e6f72672f6163616368612f61646d696e2d6c74652d74656d706c6174652d6c61726176656c2f762f737461626c652e706e67)](https://packagist.org/packages/acacha/admin-lte-template-laravel)

\#Requirements

- [Composer](https://getcomposer.org/)
- [Laravel](http://laravel.com/)
- [AdminLTE](https://github.com/almasaeed2010/AdminLTE). You can see and AdminLTE theme preview at:

Laravel 5.1 notes
-----------------

[](#laravel-51-notes)

By default this version of Laravel does not include default auth routes. See:

You will have to add this lines at your routes.php file:

```
// Authentication routes...
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
Route::get('auth/logout', 'Auth\AuthController@getLogout');

// Registration routes...
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');

// Password reset link request routes...
Route::get('password/email', 'Auth\PasswordController@getEmail');
Route::post('password/email', 'Auth\PasswordController@postEmail');

// Password reset routes...
Route::get('password/reset/{token}', 'Auth\PasswordController@getReset');
Route::post('password/reset', 'Auth\PasswordController@postReset');

```

or:

```
Route::controllers([
	'auth' => 'Auth\AuthController',
	'password' => 'Auth\PasswordController',
]);
```

and route to /home

```
Route::get('/home', ['middleware' => 'auth', function () {
    return view('home');
}]);
```

Also be aware of using new style (endig with ::class) when adding AdminLTETemplateServiceProvider to **config/app.php** file:

```

 // AdminLTE template provider
 Urameshibr\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider::class,
```

\##Installation

First install Laravel () and then Create a new Laravel project:

Add admint-lte Laravel package with:

```
 $ composer require urameshibr/laravel-adminlte:"1.0.0"
```

Register ServiceProvider editing **config/app.php** file and adding to providers array:

```
// AdminLTE template provider
Urameshibr\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider::class,
```

Publish files with:

```
 $ php artisan vendor:publish --force --provider="Urameshibr\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider"
```

Use force to overwrite Laravel Scaffolding packages. That's all! Open the Laravel project in your browser or homestead machine and enjoy!

\##First steps, database creation, migrations and login

Once package installed you have to follow the usual steps of any laravel project to Login to the admin interface:

- Create a database. I recommend the use of laravel Homestead ()
- Create .env file and configure database acces (database name, password, etc)
- Run migrations with command $ php artisan migrate
- Registera a first user and Login with it

\##AdminLTE

AdminLTE is a Free Premium Admin control Panel Theme That Is Based On Bootstrap 3.x created by Abdullah Almsaeed. See:

Roadmap
=======

[](#roadmap)

- Implement Facebook, Google and maybe twitter and github Login with Socialite
- Add email html templates

Documentation TODO
------------------

[](#documentation-todo)

- Gulp file provided to compile Boostrap and AdminLTE less files
- Partial views (html header, content header, footer, etc.) to easily reuse code
- Add breadcrumps with:

Packagist
---------

[](#packagist)

More info
---------

[](#more-info)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 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

Unknown

Total

1

Last Release

3502d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/28f3d8d95b9b0742098fda24c70c97f4670c13c7645eeb5f66c5682eace9814c?d=identicon)[LucasRodriguesBR](/maintainers/LucasRodriguesBR)

---

Top Contributors

[![urameshibr](https://avatars.githubusercontent.com/u/5429620?v=4)](https://github.com/urameshibr "urameshibr (7 commits)")

---

Tags

laraveltemplatethemeAdminLTEbootstrapadminadministratoradmin-lte

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/urameshibr-laravel-adminlte/health.svg)

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

###  Alternatives

[acacha/admin-lte-template-laravel

AdminLTE template applied to Laravel Scaffolding

1.8k387.2k8](/packages/acacha-admin-lte-template-laravel)[infyomlabs/adminlte-templates

AdminLTE templates for InfyOm Laravel Generator

2681.6M7](/packages/infyomlabs-adminlte-templates)[yiister/yii2-adminlte

yii2-adminlte is a package for yii framework 2 that consists a very popular backend template AdminLTE (based on bootstrap 3).

2839.3k](/packages/yiister-yii2-adminlte)[brackets/admin-ui

Administration user interface template

29258.6k3](/packages/brackets-admin-ui)[acacha/adminlte-laravel-installer

Adminlte-laravel application installer.

1538.8k1](/packages/acacha-adminlte-laravel-installer)

PHPackages © 2026

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