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

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

belakasdata/laravel-admin-lte
=============================

Laravel Package for integrating AdminLTE template and this package is Laravel Mix friendly.

v0.5.1(7y ago)015MITBladePHP &gt;=5.6.4

Since Sep 17Pushed 4y agoCompare

[ Source](https://github.com/belakasdata/laravel-admin-lte)[ Packagist](https://packagist.org/packages/belakasdata/laravel-admin-lte)[ Patreon](https://www.patreon.com/frdinawan)[ RSS](/packages/belakasdata-laravel-admin-lte/feed)WikiDiscussions develop Synced 4w ago

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

Laravel AdminLTE
================

[](#laravel-adminlte)

[![Latest Stable Version](https://camo.githubusercontent.com/00cf2dc7f423b10ec7454a2ad662bae6d70e19ae1f64ef4ec83601a1c52c1115/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f762f737461626c65)](https://packagist.org/packages/atnic/laravel-admin-lte)[![Total Downloads](https://camo.githubusercontent.com/3d3055d28f1a2f71e0a3ca0e2f83e3447ee653382d24924b927eec23f5f41294/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f646f776e6c6f616473)](https://packagist.org/packages/atnic/laravel-admin-lte)[![Latest Unstable Version](https://camo.githubusercontent.com/98e4f4bce33732539d13e27247005d953a067db87d37b641620b1ecc649ca147/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f762f756e737461626c65)](https://packagist.org/packages/atnic/laravel-admin-lte)[![License](https://camo.githubusercontent.com/c3d0048cfa256e4171c7a4e2b6c40d8196bc4953b71a3429f122d19c7add7dcc/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f6c6963656e7365)](https://packagist.org/packages/atnic/laravel-admin-lte)[![Monthly Downloads](https://camo.githubusercontent.com/87986b35bbed85e57d69ad1e6d40b1366dc9624ec3081714bf752d8feee004ad/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f642f6d6f6e74686c79)](https://packagist.org/packages/atnic/laravel-admin-lte)[![Daily Downloads](https://camo.githubusercontent.com/00ad96c4e5e013247f4d1fcd041099c02c0e3a0c2d81d8ec16386cbb8fa3ace2/68747470733a2f2f706f7365722e707567782e6f72672f61746e69632f6c61726176656c2d61646d696e2d6c74652f642f6461696c79)](https://packagist.org/packages/atnic/laravel-admin-lte)

Laravel Package for integrating [AdminLTE](https://adminlte.io/) template and this package is Laravel Mix friendly. Currently this package can be integrated easily only on fresh installation.

For translation in Bahasa Indonesia 🇮🇩, [please follow this link](translations/README.id.md)

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

[](#installation)

```
composer require atnic/laravel-admin-lte
```

If you are using Laravel 5.5 above skip this step, but if aren't then add this line on `config/app.php`, on `providers`

```
'providers' => [
  ...
  Atnic\AdminLTE\Providers\AppServiceProvider::class,
  ...
]
```

And then run,

```
php artisan make:admin-lte
```

Let's see what we've install. First, make sure that you already ran `php artisan migrate` command, then do

```
php artisan serve
```

Viola! You've running a Laravel site using AdminLTE.

For more information on command

```
php artisan make:admin-lte --help
```

Usage
=====

[](#usage)

This package provides view for auth and app. Take a look at `resources/views/layouts/app.blade.php`.

In this file you can extends global section like user name, avatar, breadcrumbs, and menu.

To extends menu add this in `app.blade.php`

```
@section('sidebar-menu')

  MAIN NAVIGATOR

      Home

@endsection
```

To extends breadcrumbs add this

```
@section('breadcrumbs')

   Home
  Title

@endsection
```

This package give you free of choice to use any Laravel Package for Menu and Breadcrumb. We recommend [spatie/laravel-menu](https://github.com/spatie/laravel-menu) or [lavary/laravel-menu](https://github.com/lavary/laravel-menu), and [davejamesmiller/laravel-breadcrumbs](https://github.com/davejamesmiller/laravel-breadcrumbs).

Any new created page should extends this view.

```
@extends('layouts.app')

// Your blade here
```

Configuration and Views Customization
=====================================

[](#configuration-and-views-customization)

Config
------

[](#config)

To publish this package config to your app config run

```
php artisan vendor:publish --provider="Atnic\AdminLTE\Providers\AppServiceProvider" --tag="config"
```

Views
-----

[](#views)

To publish this package views so you can customize on your own run

```
php artisan vendor:publish --provider="Atnic\AdminLTE\Providers\AppServiceProvider" --tag="views"
```

Next Step
=========

[](#next-step)

First of all, you should understand how to use [Laravel Mix](https://laravel.com/docs/5.4/mix).

Make sure `package.json` has `"laravel-mix": "^2.0"`.

AdminLTE need some package on npm. First you need to run

```
npm install
```

Install AdminLTE needed package from npm

```
npm install --save-dev admin-lte@^2.4 bootstrap-sass fastclick font-awesome icheck ionicons jquery jquery-slimscroll
```

Run Laravel Mix command

```
npm run development
```

or use `production` minimize output

```
npm run production
```

Then have a good look on these files

- `webpack.mix.js`
- `resources/assets/js/admin-lte.js`
- `resources/assets/js/auth.js`
- `resources/assets/sass/admin-lte.scss`
- `resources/assets/sass/auth.scss`

Happy experimenting!

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 86.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 ~35 days

Recently: every ~41 days

Total

8

Last Release

2908d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/282d97d694022c9cd5ada2c3d93f8dd39707bba9ac50c650569cb27e8ca5ccb1?d=identicon)[belakasdata](/maintainers/belakasdata)

---

Top Contributors

[![frdteknikelektro](https://avatars.githubusercontent.com/u/14815819?v=4)](https://github.com/frdteknikelektro "frdteknikelektro (46 commits)")[![belakasdata](https://avatars.githubusercontent.com/u/81314869?v=4)](https://github.com/belakasdata "belakasdata (6 commits)")[![Casper-O](https://avatars.githubusercontent.com/u/956154?v=4)](https://github.com/Casper-O "Casper-O (1 commits)")

---

Tags

composerlaravelpackageAdminLTEadmin-lte

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[acacha/admin-lte-template-laravel

AdminLTE template applied to Laravel Scaffolding

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

Laravel Package for integrating AdminLTE template and this package is Laravel Mix friendly.

256.4k](/packages/atnic-laravel-admin-lte)[atnic/laravel-inspinia

Laravel Package for integrating Inspinia template and this package is Laravel Mix friendly.

174.0k1](/packages/atnic-laravel-inspinia)

PHPackages © 2026

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