Compile all javascripts assets into apps.js and all css assets to apps.css
- 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
- Open resources/js/bootstrap.js and add bootstrap and admin-lte right after require('jquery');
require('bootstrap');
require('admin-lte');
- Replace resources/sass/app.scss with my app.scss
- Copy resources/views/layouts folder and replace your resources/views/layouts/welcome.blade.php
- Add the login route with 'login' name.
Route::get('/login', function () {
return view('welcome');
})->name('login');
- Run npm Dev