#AdminLTE template Laravel 5 package A Laravel 5 package that switch default Laravel scaffolding / boilerplate to AdminLTE template with Bootstrap 3.0 and Pratt Landing Page
See demo here:
http://demo.adminlte.acacha.org/
If you are looking for the Laravel 4 version, use 0.1.5 version/tag and see OLD-README.md
So easy to install! Install globally with composer:
composer global require "acacha/adminlte-laravel-installer=~3.0"
And convert any Laravel fresh (no need of fresh installation now thanks to Acacha/llum) installation to AdminLTE/Pratt with:
laravel new laravel-with-admin-lte
cd laravel-with-admin-lte
adminlte-laravel install
Enjoy! If you wish you can use llum:
llum boot
To start using you Laravel with AdminLTE project. Llum will configure database (sqlite),execute migrations, install devtools and serve for you.
More info about llum commands in Github Acacha/llum.
IMPORTANT NOTE: on MAC OS you will have to replace BSD sed with GNU sed for example using brew:
brew install gnu-sed --with-default-names
#Requirements
This packages use (no need to install):
- Composer
- Laravel
- AdminLTE. You can see and AdminLTE theme preview at: http://almsaeedstudio.com/preview/
- Pratt. Pratt Landing Page
- Acacha/user: providing boosted Laravel Users. This could be optional through configuration.
- acacha/helpers : Extra helpers for Laravel provided by acacha.
- creativeorange/gravatar: Gravatar support for user's profile images. This could be optional through configuration.
- league/flysystem : Filesystem support.
- Acacha/llum. Easy Laravel packages installation (and other tasks). Used to modify config/app.php file without using stubs (so you changes to this file would be respected)
- Acacha llum requires GNU sed. on MAC OS install GNU sed with:
brew install gnu-sed --with-default-names
This package assumes that you have in path your composer bin folder:
/YOUR_PATH_TO_HOME/.composer/vendor/bin
For example adding this line:
export PATH=${PATH}:~/.composer/vendor/bin
to your ~/.bashrc file
- Laravel menu: only used with command adminlte:menu that replaces default adminlte menu with a menu with spatie/laravel-menu support.
This package now uses Acacha/llum to install packages, providers, aliases, etc in a current existing Laravel project.
Thanks to llum we can install adminlte-laravel package in any Laravel project no need of fresh installation.
However acacha/llum use bash scripts and commands like sed thta maybe are no compatible or not available in all platforms. No problem! You can use a backwards compatible version with:
laravel new laravel-with-admin-lte
cd laravel-with-admin-lte
adminlte-laravel --no-llum install
Or you can use version 1.0 of installer with:
composer global require "acacha/adminlte-laravel-installer=~3.0"
Laravel 5.3 is the default Laravel version supported. See section Installation & use for more info. See below for info about how to install this package in older Laravel versions
Follow the typical Laravel package installation steps:
laravel new laravel-with-admin-lte cd laravel-with-admin-lte
Add admin-lte Laravel package with:
composer require "acacha/admin-lte-template-laravel:3.*"
To register the Service Provider edit config/app.php file and add to providers array:
/*
* Acacha AdminLTE template provider
*/
Acacha\AdminLTETemplateLaravel\Providers\AdminLTETemplateServiceProvider::class,
To Register Alias edit config/app.php file and add to alias array:
/*
* Acacha AdminLTE template alias
*/
'AdminLTE' => Acacha\AdminLTETemplateLaravel\Facades\AdminLTE::class,
Publish files with:
php artisan vendor:publish --tag=adminlte --force
Use force to overwrite Laravel Scaffolding packages. That's all! Open the Laravel project in your browser or homestead machine and enjoy!
Also you can use for previous version of Laravel (5.2) :
composer global require "acacha/adminlte-laravel-installer=~2.0"
laravel new --5.2 laravel-with-admin-lte
By default Laravel 5.1 does not include default auth routes. Versions > 1.0 < 2.0 of this package add the necessary routes for you
See old README file file for notes of which routes are registered.
###Installation
First install Laravel (http://laravel.com/docs/5.0/installation) and then Create a new Laravel project:
laravel new laravel-with-admin-lte cd laravel-with-admin-lte
Add admin-lte Laravel package with:
composer require "acacha/admin-lte-template-laravel:1.*"
Register ServiceProvider editing config/app.php file and adding to providers array:
// AdminLTE template provider Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider::class,
Publish files with:
php artisan vendor:publish --force --provider="Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider"
Use force to overwrite Laravel Scaffolding packages. That's all! Open the Laravel project in your browser or homestead machine and enjoy!
Note: use the following for Laravel <5.1 versions:
// AdminLTE template provider 'Acacha\AdminLTETemplateLaravel\app\Providers\AdminLTETemplateServiceProvider',
##Laravel Routes
This package installs Laravel routes that you will not find them at routes.php file. The routes installed by package would be find at file:
https://github.com/acacha/adminlte-laravel/blob/master/src/Http/routes.php
A file included by AdminLTETemplateServiceProvider:
You can override this routes by changing order of ServiceProviders in config/app.php file so if you put:
App\Providers\RouteServiceProvider::class
After
Acacha\AdminLTETemplateLaravel\Providers\AdminLTETemplateServiceProvider::class
Your routes in routes.php file will override default adminlte-laravel routes.
Also you can install manually the routes in routes.php file. Adminlte-laravel use same routes as Laravel make:auth command use, see:
https://github.com/laravel/framework/blob/5.2/src/Illuminate/Auth/Console/stubs/make/routes.stub
so you can add this lines to routes.php file:
Route::auth();
Route::get('/home', 'HomeController@index');
And disable AdminLTETemplateServiceProvider in config/app.php file ( take into account that Adminte-laravel Facades and custom commands will not be available).
See issue mdbootstrap#69 for more info
##First steps, database creation, migrations and login
Once package installed you have to follow the usual steps of any laravel project to Login to the admin interface:
- Create a database. I recommend the use of laravel Homestead ()
- Create/check .env file and configure database acces (database name, password, etc)
- Run migrations with command $ php artisan migrate
- Registera a first user and Login with it
##AdminLTE
AdminLTE is a Free Premium Admin control Panel Theme That Is Based On Bootstrap 3.x created by Abdullah Almsaeed. See:
https://github.com/almasaeed2010/AdminLTE
Adminlte-laravel supports global recognized avatar (http://gravatar.com) using package creativeorange/gravatar (https://github.com/creativeorange/gravatar).
This commands adds a view to resources/views folder using default adminlte layout:
php artisan make:view about
This commands adds a menu entry to file config/menu.php:
php artisan make:menu link menuname
Example:
php artisan make:menu /contact
This commands adds a route to routes file using:
php artisan adminlte:route linkname
For example you can add a route routes/web.php file with URI /about using:
php artisan adminlte:route about
This commands add this entry to routes/web.php
You can create 3 types of routes with option type:
- regular: routes using a clousure with a simple return view command. This is the default one
- controller: routes using a controller.
- resource: routes using a resource controller.
Examples:
php artisan adminlte:route about --type=controller
this adds the following:
Route::get('about', 'AboutController@index');
to file routes/web.php. You can choose the controller name and method with:
php artisan adminlte:route about MyController@method --type=controller
If you want to create a resource controller:
php artisan adminlte:route about --type=resource
this adds the following:
Route::resource('about', 'About@index');
to file routes/web.php.
You can also create routes with other HTTP methods using option method:
php artisan adminlte:route save --method=post
You can also add routes to api using option api:
php artisan adminlte:route save --api
Then the routes will be added to routes/api.php.
Finally use option -a to add actions after route creation:
php artisan adminlte:route about -a
Last command also create a view with name about.blade.php. Using:
php artisan adminlte:route about -a --type=controller
Will create a Controller file with name AboutController and method index.
You can consult all options with:
php artisan adminlte:route --help
This command is already executed during installation using acacha/llum but you can execute manually with:
php artisan adminlte:publish
Publish all necessary files from package to Laravel project.
Only publish package sidebar to Laravel project allowing to customize sidebar:
php artisan adminlte:sidebar
Note: sidebar is already published when you use adminlte-laravel install command.
Replaces sidebar view with a sidebar using spatie/laravel-menu:
php artisan adminlte:menu
This command also installs spatie/laravel-menu package and creates a default menu located config/menu.php.
IMPORTANT: Spatie Laravel Menu required PHP7.0 or superior to work
Executes make:adminUserSeeder artisan command (see next section) an executes seed. This command adds a default admin user to database.
php artisan adminlte:admin
File /home/sergi/Code/AdminLTE/acacha/adminlte-laravel_test/database/seeds/AdminUserSeeder.php created
User Sergi Tur Badenas(sergiturbadenas@gmail.com) with the environemnt password (env var ADMIN_PWD) created succesfully!
This command use (if exists) environment variables (.env file) ADMIN_USER, ADMIN_EMAIL and ADMIN_PWD. If this env variables does not exists then user git config (~/.gitconfig) to obtain data and if this info does not exists use Admin (admin@example.com) and password 123456 as default.
Create a new seed to add admin user to database. Use:
php artisan make:adminUserSeeder
File /home/sergi/Code/AdminLTE/acacha/adminlte-laravel_test/database/seeds/AdminUserSeeder.php created
- Implement Facebook, Google and maybe twitter and github Login with Socialite
- Add email html templates
- Add breadcrumps with: https://github.com/davejamesmiller/laravel-breadcrumbs
- Gulp file provided to compile Boostrap and AdminLTE less files
- Partial views (html header, content header, footer, etc.) to easily reuse code
https://packagist.org/packages/acacha/admin-lte-template-laravel
http://acacha.org/mediawiki/AdminLTE#adminlte-laravel
Execute:
phpunit
In new created laravel project with acacha-admintle.laravel installed to test package is installed correctly.
FAQ:
How can I remove social login links in register and login pages?
Remove line @include('auth.partials.social_login') in files resources/views/auth/login.blade.php and register.blade.php
Social login links in login/register pages returns 404 not found
TODO: See package https://github.com/acacha/acacha-socialite
All strings are localized using Laravel localization support: https://laravel.com/docs/master/localization
In your config/app.php file you can change locale to change language. You can install only localized files using tag adminlte_lang:
php artisan vendor:publish --tag=adminlte_lang --force
The following languages are supported by default on this package: English, Catalan,Spanish and Brazilian Portuguese. Please feel free to submit a new pull request with another languages if you wish.
Acacha llum need GNU sed to work so replace BSD sed with GNU sed using:
brew install gnu-sed --with-default-names
Check you version of sed with:
man sed
sed GNU version path is:
$ which sed
/usr/local/bin/sed
Instead of default path of BSD sed (installed by default on MAC OS):
/usr/bin/sed
More info at mdbootstrap#58
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email :author_email instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.