laraeast / laravel-adminlte
A short description of what your package does
Installs: 617
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: ^7.0
- illuminate/filesystem: ~5.5|^6.0|^7.0
This package is auto-updated.
Last update: 2024-11-11 04:49:15 UTC
README
An easy way to integrate AdminLTE into your laravel applications.
Installation
1 - Install package via composer.
composer require laraeast/laravel-adminlte --dev
2 - Install scaffolding.
php artisan adminlte:install
3 - Install npm
dependencies
npm install && npm run adminlte:dev
4 - Runing demo page.
Route::get('/', function () {
return view('layouts.adminlte.app');
});