Package Data | |
---|---|
Maintainer Username: | Hesto |
Maintainer Contact: | losiakp@gmail.com (Hesto) |
Package Create Date: | 2016-08-13 |
Package Last Update: | 2016-11-08 |
Home Page: | |
Language: | HTML |
License: | MIT |
Last Refreshed: | 2024-11-10 15:04:55 |
Package Statistics | |
---|---|
Total Downloads: | 135 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 4 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This package provides easy way to install latest version of AdminLTE in your Laravel 5 Project. AdminLTE files are not hardcoded in package, they are downloaded by npm
during installation and compiled by gulp
.
adminlte:install
adminlte:layout
composer require hesto/adminlte
You'll only want to use these generators for local development, so you don't want to update the production providers
array in config/app.php
. Instead, add the provider in app/Providers/AppServiceProvider.php
, like so:
public function register()
{
if ($this->app->environment() == 'local') {
$this->app->register('Hesto\Adminlte\AdminlteServiceProvider');
}
}
If you want to override existing files use -f
flag. This command will override for example your gulpfile, so if you made any changes be careful. If you didn't make any changes or you're not familiar with gulpfile, just override it.
php artisan adminlte:install -f
npm install
gulp
npm update
gulp
https://nodejs.org/en/download/
npm install -g gulp
If you want an example layout, you can use adminlte:layout name_of_layout
command to generate it. It will create view files in /resources/views/name_of_layout/
.
php artisan adminlte:layout admin -f
https://almsaeedstudio.com/