Skip to content

tabunan/AdminLTE-Laravel

Repository files navigation

Implementing AdminLTE to Laravel From scratch

Compile all javascripts assets into apps.js and all css assets to apps.css

  1. Add the packages to your package.json
"jquery": "^3.2",
"admin-lte": "^2.4.7",
"bootstrap": "^3.4.1",
"ionicons": "^4.5.5"

Make sure to use bootstrap 3.4.1 if you are implementing AdminLte 2.3

Install the packages

  1. Open resources/js/bootstrap.js and add bootstrap and admin-lte right after require('jquery');
require('bootstrap');
require('admin-lte');
  1. Replace resources/sass/app.scss with my app.scss
  2. Copy resources/views/layouts folder and replace your resources/views/layouts/welcome.blade.php
  3. Add the login route with 'login' name.
Route::get('/login', function () {
     return view('welcome');
 })->name('login');
  1. Run npm Dev

About

Implementing AdminLTE to Laravel From scratch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •