Resources
Everything around AdminLTE 4 for Laravel — source, package, the live demo, the upstream template, the in-app docs and how to get help.
Project links
| Resource | Link |
|---|---|
| Repository (GitHub) | github.com/ColorlibHQ/adminlte-laravel |
| Package (Packagist) | colorlibhq/adminlte-laravel |
| Live demo | laravel.adminlte.io |
| AdminLTE (template home) | adminlte.io |
| AdminLTE core (HTML/Bootstrap) | github.com/ColorlibHQ/AdminLTE |
| Issues | github.com/ColorlibHQ/adminlte-laravel/issues |
Install
composer require colorlibhq/adminlte-laravel
php artisan adminlte:install
In-app documentation
Full docs ship inside the package and are also served inside your app at /docs, rendered with the AdminLTE layout. Disable them in production with 'docs' => false in config/adminlte.php. The repo's docs/ directory additionally covers scaffolding, authentication, authorization (RBAC), account management, notifications, the activity log, API tokens, real-time, commands and translations.
Artisan commands
php artisan adminlte:install— publish config, Vite stubs, vendor files (--only=,--force).php artisan adminlte:status— report which resources are installed.php artisan adminlte:scaffold— generate DB-backed sections (mailbox, chat, kanban, calendar, projects, and more).php artisan adminlte:make-auth— auth scaffolding (plain / Breeze / Fortify).
License
Released under the MIT License © Colorlib & AdminLTE contributors. Free for personal and commercial use.
Reporting issues
Found a bug or have a feature request? Open an issue on the GitHub issue tracker. Please include:
- Your PHP and Laravel versions (the package requires PHP 8.3+ and Laravel 13).
- The package version from
composer show colorlibhq/adminlte-laravel. - A minimal reproduction — the relevant
config/adminlte.phpsnippet and Blade view.
Related ports
AdminLTE 4 is offered as official ports across many stacks — the same template, native to each ecosystem:
Contributions are welcome — the repo runs Pint, Larastan (level 8) and PHPUnit in CI on PHP 8.3 / 8.4 / 8.5 with Laravel 13. Run them all locally with composer check before opening a pull request.