2017 © Pedro Peláez
 

package admin-lte-template-laravel

AdminLTE template applied to Laravel Scaffolding

image

acacha/admin-lte-template-laravel

AdminLTE template applied to Laravel Scaffolding

  • Monday, May 21, 2018
  • by acacha
  • Repository
  • 121 Watchers
  • 1561 Stars
  • 183,811 Installations
  • PHP
  • 14 Dependents
  • 0 Suggesters
  • 477 Forks
  • 33 Open issues
  • 100 Versions
  • 7 % Grown

The README.md

AdminLTE template Laravel package

A Laravel package that switch default Laravel scaffolding / boilerplate to AdminLTE template with Bootstrap 3.0 and Pratt Landing Page, (*1)

See demo here:, (*2)

http://demo.adminlte.acacha.org/, (*3)

If you are looking for the Laravel 4 version, use 0.1.5 version/tag and see OLD-README.md, (*4)

Latest Version on Packagist Total Downloads Monthly Downloads Daily Downloads Scrutinizer Code Quality Code Coverage Build Status StyleCI Build Status, (*5)

Installation

composer require "acacha/admin-lte-template-laravel"

Finally publish files with:, (*6)

php artisan vendor:publish --tag=adminlte --force

Requirements

This packages use (no need to install):, (*7)

brew install gnu-sed --with-default-names

This package assumes that you have in path your composer bin folder:, (*8)

/YOUR_PATH_TO_HOME/.composer/vendor/bin

For example adding this line:, (*9)

export PATH=${PATH}:~/.composer/vendor/bin

to your ~/.bashrc file, (*10)

Note: in some systems the path coul be diferent for example:, (*11)

export PATH=${PATH}:~/.config/composer/vendor/bin

Please be sure to check you environment., (*12)

Optional requirements

  • Laravel menu: only used with command adminlte:menu that replaces default adminlte menu with a menu with spatie/laravel-menu support.

Laravel 7 and older

  • This package works smoothly with Laravel 7.x with 7.x version
  • This package works smoothly with Laravel 6.x|5.x with 6.x version

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:, (*13)

https://github.com/acacha/adminlte-laravel/blob/master/src/Http/routes.php, (*14)

A file included by AdminLTETemplateServiceProvider:, (*15)

https://github.com/acacha/adminlte-laravel/blob/master/src/Providers/AdminLTETemplateServiceProvider.php, (*16)

You can override this routes by changing order of ServiceProviders in config/app.php file so if you put:, (*17)

App\Providers\RouteServiceProvider::class

After, (*18)

Acacha\AdminLTETemplateLaravel\Providers\AdminLTETemplateServiceProvider::class

Your routes in routes.php file will override default adminlte-laravel routes., (*19)

Also you can install manually the routes in routes.php file. Adminlte-laravel use same routes as Laravel make:auth command use, see:, (*20)

https://github.com/laravel/framework/blob/5.2/src/Illuminate/Auth/Console/stubs/make/routes.stub, (*21)

so you can add this lines to routes.php file:, (*22)

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)., (*23)

See issue https://github.com/acacha/adminlte-laravel/issues/69 for more info, (*24)

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:, (*25)

  • Create a database. I recommend the use of laravel Homestead ()
  • Create/check .env file and configure database access (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:, (*26)

https://github.com/almasaeed2010/AdminLTE, (*27)

Avatar/Gravatar

Adminlte-laravel supports global recognized avatar (http://gravatar.com) using package creativeorange/gravatar (https://github.com/creativeorange/gravatar)., (*28)

Artisan Commands

make:view

This commands adds a view to resources/views folder using default adminlte layout:, (*29)

php artisan make:view about

make:menu

This commands adds a menu entry to file config/menu.php:, (*30)

php artisan make:menu link menuname

Example:, (*31)

php artisan make:menu /contact

make:route

This commands adds a route to routes file using:, (*32)

php artisan make:route linkname

For example you can add a route routes/web.php file with URI /about using:, (*33)

php artisan make:route about

This commands add this entry to routes/web.php, (*34)

You can create 3 types of routes with option type:, (*35)

  • 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:, (*36)

php artisan make:route about --type=controller

this adds the following:, (*37)

Route::get('about', 'AboutController@index');

to file routes/web.php. You can choose the controller name and method with:, (*38)

php artisan make:route about MyController@method --type=controller

If you want to create a resource controller:, (*39)

php artisan make:route about --type=resource

this adds the following:, (*40)

Route::resource('about', 'About@index');

to file routes/web.php., (*41)

You can also create routes with other HTTP methods using option method:, (*42)

php artisan make:route save --method=post

You can also add routes to api using option api:, (*43)

php artisan make:route save --api

Then the routes will be added to routes/api.php., (*44)

Finally use option -a to add actions after route creation:, (*45)

php artisan make:route about -a

Last command also create a view with name about.blade.php. Using:, (*46)

php artisan make:route about -a --type=controller

Will create a Controller file with name AboutController and method index., (*47)

You can consult all options with:, (*48)

php artisan make:route --help

adminlte:publish | adminlte-laravel:publish

This command is already executed during installation you can (re)execute manually with:, (*49)

php artisan adminlte:publish

Publish all necessary files from package to Laravel project., (*50)

adminlte:sidebar | adminlte-laravel:sidebar

Only publish package sidebar to Laravel project allowing to customize sidebar:, (*51)

php artisan adminlte:sidebar

Note: sidebar is already published when you use adminlte-laravel install command., (*52)

adminlte:menu | adminlte-laravel:menu

Replaces sidebar view with a sidebar using spatie/laravel-menu:, (*53)

php artisan adminlte:menu

This command also installs spatie/laravel-menu package and creates a default menu located config/menu.php., (*54)

IMPORTANT: Spatie Laravel Menu required PHP7.0 or superior to work, (*55)

adminlte-laravel:admin | adminlte:admin

Executes make:adminUserSeeder artisan command (see next section) an executes seed. This command adds a default admin user to database., (*56)

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., (*57)

make:adminUserSeeder

Create a new seed to add admin user to database. Use:, (*58)

php artisan make:adminUserSeeder
File /home/sergi/Code/AdminLTE/acacha/adminlte-laravel_test/database/seeds/AdminUserSeeder.php created

Social Login/Register with acacha/laravel-social

It's a cinch to add (optional) Social Login/Register support to Laravel Adminlte using acacha/laravel-social package. Execute in your project root folder:, (*59)

adminlte-laravel social

Follow the wizard to configure your social providers Oauth data and enjoy!, (*60)

More info at https://github.com/acacha/laravel-social., (*61)

How to remove social Login?

Remove line, (*62)

@include('auth.partials.social_login')

in files resources/views/auth/login.blade.php and register.blade.php, (*63)

Roadmap

  • Add email html templates
  • Add breadcrumps with: https://github.com/davejamesmiller/laravel-breadcrumbs

Documentation TODO

  • Gulp file provided to compile Boostrap and AdminLTE less files
  • Partial views (html header, content header, footer, etc.) to easily reuse code

Packagist

https://packagist.org/packages/acacha/admin-lte-template-laravel, (*64)

More info

http://acacha.org/mediawiki/AdminLTE#adminlte-laravel, (*65)

Tests

Testing this package

Use phpunit on run composer script test:, (*66)

``` bash $ composer test, (*67)


### Testing laravel project once this package is installed Once this package is installed in a Laravel project some tests are installed to test package features. There are two kind of tests Feature/Unit tests and Browser tests. To execute Feature/Unit tests execute:

./vendor/bin/phpunit, (*68)


In a new created laravel project with acacha-admintle.laravel installed to test that package is installed correctly. You can also execute Browser tests with Laravel Dusk (please install first manually Dusk package following https://laravel.com/docs/master/dusk):

php artisan dusk:install touch database/testing.database.sqlite php artisan serve --env=dusk.local & php artisan dusk, (*69)


You can also test this package in a sandbox without need to install. Run script: ```bash ./test.sh

Localization

All strings are localized using Laravel localization support: https://laravel.com/docs/master/localization, (*70)

In your config/app.php file you can change locale to change language. You can install only localized files using tag adminlte_lang:, (*71)

php artisan vendor:publish --tag=adminlte_lang --force

The following languages are supported by default on this package: English, Catalan, Spanish, Dutch and Brazilian Portuguese. Please feel free to submit a new pull request with another languages if you wish., (*72)

Troubleshooting

GNU sed on MAC OS

NOTA: not needed in Laravel 5.5+, (*73)

Acacha llum need GNU sed to work so replace BSD sed with GNU sed using:, (*74)

brew install gnu-sed --with-default-names

Check you version of sed with:, (*75)

man sed

sed GNU version path is:, (*76)

$ which sed
/usr/local/bin/sed

Instead of default path of BSD sed (installed by default on MAC OS):, (*77)

/usr/bin/sed

More info at https://github.com/acacha/adminlte-laravel/issues/58, (*78)

How to use username at login instead of email

Execute command:, (*79)

php artisan adminlte:username

And then you can use username instead of email for login., (*80)

NOTE: when we are using login by username if login by usernames fails then system try to use the introduced username as an email for login. So users can also login using email., (*81)

To come back to email login remove field option from config/auth.php file:, (*82)

'providers' => [
    'users' => [
        'driver' => 'eloquent',
        'model' => App\User::class,
        'field' => 'username' // Adminlte laravel. Valid values: 'email' or 'username'
    ],

NOTE: Migration required to add username field to users table requires:, (*83)

composer require doctrine/dbal

Default domain for username registration

Optionally you can define a default domain name for username login. Add domain option:, (*84)

'defaults' => [
    'guard' => 'web',
    'passwords' => 'users',
    'domain' => 'defaultdomain.com',
],

to file config/auth.php. Then if an user tries to login with no domain the default domain will be appended whe logging., (*85)

So with previous example you can type at login:, (*86)

sergiturbadenas

and system/javascript will replace that with:, (*87)

sergiturbadenas@defaultdomain.com

Vue

Laravel adminlte package by default publish Laravel translations into Javascript/Vue.js adding to HTML header the following script:, (*88)

<script>
    //See https://laracasts.com/discuss/channels/vue/use-trans-in-vuejs
    window.trans = @php
        // copy all translations from /resources/lang/CURRENT_LOCALE/* to global JS variable
        $lang_files = File::files(resource_path() . '/lang/' . App::getLocale());
        $trans = [];
        foreach ($lang_files as $f) {
            $filename = pathinfo($f)['filename'];
            $trans[$filename] = trans($filename);
        }
        $trans['adminlte_lang_message'] = trans('adminlte_lang::message');
        echo json_encode($trans);
    @endphp
</script>

This script is located in partial blade file (vendor/acacha/admin-lte-template-laravel/resources/views/layouts/partials/htmlheader.blade.php), (*89)

So global variable window.trans contains all Laravel translations at can be used in any Javascript file., (*90)

Also in file resources/assets/js/bootstrap.js code section:, (*91)

Vue.prototype.trans = (key) => {
    return _.get(window.trans, key, key);
};

Allows using directly the trans function in vue templates:, (*92)

{{ trans('auth.failed') }}

Also you can use inside Vue components code:, (*93)

this.trans('auth.failed')

Laravel Adminlte messages ara available using prefix adminlte_lang_message:, (*94)

{{ trans('adminlte_lang_message.username') }}

Feel free to remove/adapt this file to your needs., (*95)

Change log

Please see CHANGELOG for more information what has changed recently., (*96)

Contributing

Please see CONTRIBUTING and CONDUCT for details., (*97)

Security

If you discover any security related issues, please email sergiturbadenas@gmail.com instead of using the issue tracker., (*98)

Credits

License

The MIT License (MIT). Please see License File for more information., (*99)

See also

https://github.com/acacha/adminlte-laravel-installer, (*100)

The Versions

21/05 2018

dev-master

9999999-dev https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

21/05 2018

2.0.13

2.0.13.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

14/03 2018

dev-analysis-zDeKjk

dev-analysis-zDeKjk https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

14/03 2018
14/03 2018

dev-analysis-q2dvWr

dev-analysis-q2dvWr https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

06/01 2018

5.0.5

5.0.5.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

30/08 2017

dev-add-code-of-conduct-1

dev-add-code-of-conduct-1 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

21/06 2017

dev-analysis-z9kY3P

dev-analysis-z9kY3P https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

19/06 2017

dev-analysis-X0dZAx

dev-analysis-X0dZAx https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

07/06 2017

dev-analysis-qJpxMa

dev-analysis-qJpxMa https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

16/04 2017

dev-analysis-Xl9bEV

dev-analysis-Xl9bEV https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/04 2017

dev-analysis-zDWwGb

dev-analysis-zDWwGb https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/04 2017

dev-analysis-zeLE5P

dev-analysis-zeLE5P https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/04 2017

dev-analysis-qJ4wPk

dev-analysis-qJ4wPk https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

06/04 2017

dev-analysis-qJ4laQ

dev-analysis-qJ4laQ https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

06/04 2017
05/04 2017
29/03 2017
22/03 2017
10/03 2017
08/03 2017
08/03 2017
19/02 2017

dev-analysis-q1Zv93

dev-analysis-q1Zv93 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

19/02 2017
17/02 2017

dev-analysis-qondDB

dev-analysis-qondDB https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

17/02 2017

4.1.1

4.1.1.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

17/02 2017

4.1

4.1.0.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/02 2017

dev-analysis-qJbJVa

dev-analysis-qJbJVa https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/02 2017

4.0.12

4.0.12.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

15/02 2017

4.0.11

4.0.11.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

02/02 2017

4.0.10

4.0.10.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

01/02 2017

4.0.9

4.0.9.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

28/01 2017

4.0.8

4.0.8.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

28/01 2017

4.0.7

4.0.7.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

28/01 2017

4.0.6

4.0.6.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

28/01 2017

4.0.5

4.0.5.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

27/01 2017

4.0.4

4.0.4.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

27/01 2017

4.0.3

4.0.3.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

25/01 2017

dev-analysis-8LBK4P

dev-analysis-8LBK4P https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

25/01 2017

4.0.2

4.0.2.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

25/01 2017

4.0.1

4.0.1.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

25/01 2017

4.0

4.0.0.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

19/12 2016

3.3.2

3.3.2.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

19/12 2016

dev-analysis-zEG32y

dev-analysis-zEG32y https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

19/12 2016

dev-analysis-z4mN2N

dev-analysis-z4mN2N https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

18/12 2016

3.3.1

3.3.1.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

18/12 2016

3.3.0

3.3.0.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

18/12 2016

dev-analysis-8Q0AOP

dev-analysis-8Q0AOP https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

16/12 2016

3.2.2

3.2.2.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

16/12 2016

3.2.1

3.2.1.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

16/12 2016

dev-analysis-qyk56Y

dev-analysis-qyk56Y https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

16/12 2016
14/12 2016

dev-analysis-Xlev1w

dev-analysis-Xlev1w https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

14/12 2016

3.1.12

3.1.12.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

07/12 2016

dev-analysis-zOv64L

dev-analysis-zOv64L https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

07/12 2016

3.1.11

3.1.11.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

07/12 2016

3.1.10

3.1.10.0 https://github.com/acacha/adminlte-laravel

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte acacha

05/12 2016

dev-analysis-zYokQ9

dev-analysis-zYokQ9

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

20/11 2016

3.1.8

3.1.8.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

08/11 2016

dev-revert-122-LogoutMethodNotAllowedFix

dev-revert-122-LogoutMethodNotAllowedFix

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

08/11 2016

dev-analysis-q1wg7y

dev-analysis-q1wg7y

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

01/11 2016

3.1.7

3.1.7.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

24/10 2016

3.1.6

3.1.6.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/10 2016

dev-analysis-XaQldB

dev-analysis-XaQldB

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/10 2016

3.1.4.1

3.1.4.1

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/10 2016

3.1.4

3.1.4.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/10 2016

3.1.3

3.1.3.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

02/10 2016

dev-analysis-qJMMjk

dev-analysis-qJMMjk

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

02/10 2016

3.1.2

3.1.2.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

26/09 2016

3.1.1

3.1.1.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

26/09 2016

3.1

3.1.0.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

19/09 2016

3.0.12

3.0.12.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.11

3.0.11.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.10

3.0.10.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.9

3.0.9.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

dev-analysis-8wyrOW

dev-analysis-8wyrOW

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.8

3.0.8.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.7

3.0.7.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

17/09 2016

3.0.6

3.0.6.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

16/09 2016

dev-analysis-zY6e9A

dev-analysis-zY6e9A

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

15/09 2016

3.0.5

3.0.5.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

14/09 2016

dev-analysis-8Qlkpp

dev-analysis-8Qlkpp

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/09 2016

3.0.4

3.0.4.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/09 2016

3.0.3

3.0.3.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/09 2016

3.0.2

3.0.2.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

05/09 2016

3.0.1

3.0.1.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

03/09 2016

3.0

3.0.0.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

28/06 2016

dev-analysis-qg6Vbw

dev-analysis-qg6Vbw

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

26/05 2016

2.0.12

2.0.12.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

25/05 2016

dev-analysis-qJGbMa

dev-analysis-qJGbMa

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte

25/05 2016

2.0.10

2.0.10.0

AdminLTE template applied to Laravel Scaffolding

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel template bootstrap theme admin administrator adminlte admin-lte