mhk67 / adminlte
very easy to use in Laravel, AdminLte is a Bootstrap Admin Panel.We use This to Make Laravel Admin Panel, And added RTL Support, exist Light and and dark Theme.also easy to use, for add sidebar menu you can use array list, also use config file to set dark or use RTL
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.0
- illuminate/support: ^8.0|^9.0|^10.0
This package is auto-updated.
Last update: 2025-07-06 19:17:22 UTC
README
Laravel AdminLTE very easy to use, AdminLte is a Bootstrap Admin Panel. We use This to Make Laravel Admin Panel, And added RTL Support, exist Light and dark Theme. also easy to use, for add sidebar menu you can use array list, also use config file to set dark or use RTL
Preview:
Install:
Via Composer
composer require mhk67/adminlte:dev-main
after install use this command:
php artisan vendor:publish --provider=Mhk67\AdminLte\AdminLteServiceProvider
config file:
you can set config on this location:
config/AdminLte.php
return [ 'brandName' => 'AdminLTE3', 'brandLink' => 'AdminLte.dashboard', #route name 'theme' => 'light', #light or dark 'rtl' => false, #false or true 'sidebar_menu'=>[ [ 'text'=>'Dashboard', 'link'=>'#', 'icon'=>'fas fa-tachometer-alt', 'badge'=>[], 'sub-menu'=>[ [ 'text'=>'Dashboard v1', 'link'=>'AdminLte.dashboard', 'icon'=>'far fa-circle', 'badge'=>[], 'sub-menu'=>[], ], [ 'text'=>'Dashboard v2', 'link'=>'AdminLte.dashboard2', 'icon'=>'far fa-circle', 'badge'=>[], 'sub-menu'=>[], ], ], ], [ 'text'=>'Widgets', 'link'=>'#', 'icon'=>'fas fa-th', 'badge'=>['danger'=>'New'], 'sub-menu'=>[], ], [ 'text'=>'Layout Option', 'link'=>'#', 'icon'=>'fas fa-copy', 'badge'=>['info'=>'6'], 'sub-menu'=>[ [ 'text'=>'Top Navigation', 'link'=>'AdminLte.blank', 'icon'=>'far fa-circle', 'badge'=>[], 'sub-menu'=>[], ], ], ], [ 'text'=>'Important', 'link'=>'#', 'icon'=>'far fa-circle text-danger', 'badge'=>[], 'sub-menu'=>[], ], [ 'text'=>'Warning', 'link'=>'#', 'icon'=>'far fa-circle text-warning', 'badge'=>[], 'sub-menu'=>[], ], ] ];