Frontend version: Light Bootstrap Dashboard v2.1.1. More info at https://www.creative-tim.com/product/light-bootstrap-dashboard/?ref=lbdl-readme
Speed up your web development with the Bootstrap 4 Admin Dashboard built for Laravel Framework 9.x and up.
If you want to get more features, go PRO with Light Bootstrap Dashboard PRO Laravel.
We recommend installing this preset on a project that you are starting from scratch, otherwise your project's design might break.
If you don't already have an Apache local environment with PHP and MySQL, use one of the following links:
- Windows: https://updivision.com/blog/post/beginner-s-guide-to-setting-up-your-local-development-environment-on-windows
- Linux & Mac: https://updivision.com/blog/post/guide-what-is-lamp-and-how-to-install-it-on-ubuntu-and-macos
Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md
And Laravel: https://laravel.com/docs/10.x
After initializing a fresh instance of Laravel (and making all the necessary configurations), install the preset using one of the provided methods:
Cd
to your Laravel app- Type in your terminal:
composer require laravel/ui
andphp artisan ui vue --auth
- Install this preset via
composer require laravel-frontend-presets/light-bootstrap
. No need to register the service provider. Laravel 9.x can auto detect the package. - Run
php artisan ui light-bootstrap
command to install the Light Bootstrap preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route inroutes/web.php
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php) - In your terminal run
composer dump-autoload
- Run
php artisan migrate --seed
to create basic users table
- In your application's root create a presets folder
- Download an archive of the repo and unzip it
- Copy and paste light-bootstrap-dashboard-master folder in presets (created in step 2) and rename it to light-bootstrap
- Open
composer.json
file - Add
"LaravelFrontendPresets\\LightBootstrapPreset\\": "presets/light-bootstrap/src"
toautoload/psr-4
and toautoload-dev/psr-4
- Add
LaravelFrontendPresets\LightBootstrapPreset\LightBootstrapPresetServiceProvider::class
toconfig/app.php
file - Type in your terminal:
composer require laravel/ui
andphp artisan ui vue --auth
- In your terminal run
composer dump-autoload
- Run
php artisan ui light-bootstrap
command to install the Light Bootstrap preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route inroutes/web.php
(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php) - Run
php artisan migrate --seed
to create basic users table
Register a user or login using [email protected] and secret and start testing the preset (make sure to run the migrations and seeders for these credentials to be available).
Besides the dashboard and the auth pages this preset also has an edit profile page. All the necessary files (controllers, requests, views) are installed out of the box and all the needed routes are added to routes/web.php
. Keep in mind that all of the features can be viewed once you login using the credentials provided above or by registering your own user.
You can access the dashboard either by using the "Dashboard" link in the left sidebar or by adding /home in the url.
You have the option to edit the current logged in user's profile (change name, email and password). To access this page just click the "User profile" link in the left sidebar or by adding /profile in the url.
The App\Http\Controllers\ProfileController
handles the update of the user information.
public function update(ProfileRequest $request)
{
auth()->user()->update($request->all());
return back()->withStatus(__('Profile successfully updated.'));
}
Also you shouldn't worry about entering wrong data in the inputs when editing the profile, validation rules were added to prevent this (see App\Http\Requests\ProfileRequest
). If you try to change the password you will see that other validation rules were added in App\Http\Requests\PasswordRequest
. Notice that in this file you have a custom validation rule that can be found in App\Rules\CurrentPasswordCheckRule
.
public function rules()
{
return [
'old_password' => ['required', 'min:6', new CurrentPasswordCheckRule],
'password' => ['required', 'min:6', 'confirmed', 'different:old_password'],
'password_confirmation' => ['required', 'min:6'],
];
}
- Versions
- Demo
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Licensing
- Useful Links
HTML | LARAVEL |
---|---|
Register | Login | Dashboard |
---|---|---|
Profile Page | Users Page | Tables Page |
---|---|---|
View More |
The documentation for the Light Bootstrap Dashboard Laravel is hosted at our website.
+--- app
βΒ Β βββ Console
βΒ Β βΒ Β βββ Kernel.php
βΒ Β βββ Exceptions
βΒ Β βΒ Β βββ Handler.php
βΒ Β βββ Http
βΒ Β βΒ Β βββ Controllers
βΒ Β βΒ Β βΒ Β βββ Auth
βΒ Β βΒ Β βΒ Β βΒ Β βββ ForgotPasswordController.php
βΒ Β βΒ Β βΒ Β βΒ Β βββ LoginController.php
βΒ Β βΒ Β βΒ Β βΒ Β βββ RegisterController.php
βΒ Β βΒ Β βΒ Β βΒ Β βββ ResetPasswordController.php
βΒ Β βΒ Β βΒ Β βΒ Β βββ VerificationController.php
βΒ Β βΒ Β βΒ Β βββ Controller.php
βΒ Β βΒ Β βΒ Β βββ HomeController.php
βΒ Β βΒ Β βΒ Β βββ PageController.php
βΒ Β βΒ Β βΒ Β βββ ProfileController.php
βΒ Β βΒ Β βΒ Β βββ UserController.php
βΒ Β βΒ Β βββ Kernel.php
βΒ Β βΒ Β βββ Middleware
βΒ Β βΒ Β βΒ Β βββ Authenticate.php
βΒ Β βΒ Β βΒ Β βββ CheckForMaintenanceMode.php
βΒ Β βΒ Β βΒ Β βββ EncryptCookies.php
βΒ Β βΒ Β βΒ Β βββ RedirectIfAuthenticated.php
βΒ Β βΒ Β βΒ Β βββ TrimStrings.php
βΒ Β βΒ Β βΒ Β βββ TrustProxies.php
βΒ Β βΒ Β βΒ Β βββ VerifyCsrfToken.php
βΒ Β βΒ Β βββ Requests
βΒ Β βΒ Β βββ PasswordRequest.php
βΒ Β βΒ Β βββ ProfileRequest.php
βΒ Β βΒ Β βββ UserRequest.php
βΒ Β βββ Providers
βΒ Β βΒ Β βββ AppServiceProvider.php
βΒ Β βΒ Β βββ AuthServiceProvider.php
βΒ Β βΒ Β βββ BroadcastServiceProvider.php
βΒ Β βΒ Β βββ EventServiceProvider.php
βΒ Β βΒ Β βββ RouteServiceProvider.php
βΒ Β βββ Rules
βΒ Β βΒ Β βββ CurrentPasswordCheckRule.php
βΒ Β βββ User.php
βββ artisan
βββ bootstrap
βΒ Β βββ app.php
βΒ Β βββ cache
βΒ Β βββ packages.php
βΒ Β βββ services.php
βββ composer.json
βββ composer.lock
βββ config
βΒ Β βββ app.php
βΒ Β βββ auth.php
βΒ Β βββ broadcasting.php
βΒ Β βββ cache.php
βΒ Β βββ database.php
βΒ Β βββ filesystems.php
βΒ Β βββ hashing.php
βΒ Β βββ logging.php
βΒ Β βββ mail.php
βΒ Β βββ queue.php
βΒ Β βββ services.php
βΒ Β βββ session.php
βΒ Β βββ view.php
βββ database
βΒ Β βββ factories
βΒ Β βΒ Β βββ UserFactory.php
βΒ Β βββ migrations
βΒ Β βΒ Β βββ 2014_10_12_000000_create_users_table.php
βΒ Β βΒ Β βββ 2014_10_12_100000_create_password_resets_table.php
βΒ Β βββ seeds
βΒ Β βββ DatabaseSeeder.php
βΒ Β βββ UsersTableSeeder.php
βββ package.json
βββ phpunit.xml
βββ public
βΒ Β βββ favicon.ico
βΒ Β βββ index.php
βΒ Β βββ light-bootstrap
βΒ Β βΒ Β βββ css
βΒ Β βΒ Β βΒ Β βββ bootstrap.min.css
βΒ Β βΒ Β βΒ Β βββ demo.css
βΒ Β βΒ Β βΒ Β βββ light-bootstrap-dashboard.css
βΒ Β βΒ Β βββ fonts
βΒ Β βΒ Β βΒ Β βββ nucleo-icons.eot
βΒ Β βΒ Β βΒ Β βββ nucleo-icons.svg
βΒ Β βΒ Β βΒ Β βββ nucleo-icons.ttf
βΒ Β βΒ Β βΒ Β βββ nucleo-icons.woff
βΒ Β βΒ Β βΒ Β βββ nucleo-icons.woff2
βΒ Β βΒ Β βββ img
βΒ Β βΒ Β βΒ Β βββ apple-icon.png
βΒ Β βΒ Β βΒ Β βββ bg5.jpg
βΒ Β βΒ Β βΒ Β βββ default-avatar.png
βΒ Β βΒ Β βΒ Β βββ faces
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-0.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-1.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-2.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-3.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-4.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-5.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-6.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ face-7.jpg
βΒ Β βΒ Β βΒ Β βΒ Β βββ tim_vector.jpe
βΒ Β βΒ Β βΒ Β βββ favicon.ico
βΒ Β βΒ Β βΒ Β βββ full-screen-image-2.jpg
βΒ Β βΒ Β βΒ Β βββ full-screen-image-3.jpg
βΒ Β βΒ Β βΒ Β βββ laravel.svg
βΒ Β βΒ Β βΒ Β βββ loading-bubbles.svg
βΒ Β βΒ Β βΒ Β βββ mask.png
βΒ Β βΒ Β βΒ Β βββ new_logo.png
βΒ Β βΒ Β βΒ Β βββ sidebar-1.jpg
βΒ Β βΒ Β βΒ Β βββ sidebar-2.jpg
βΒ Β βΒ Β βΒ Β βββ sidebar-3.jpg
βΒ Β βΒ Β βΒ Β βββ sidebar-4.jpg
βΒ Β βΒ Β βΒ Β βββ sidebar-5.jpg
βΒ Β βΒ Β βΒ Β βββ tim_80x80.png
βΒ Β βΒ Β βββ js
βΒ Β βΒ Β βΒ Β βββ core
βΒ Β βΒ Β βΒ Β βΒ Β βββ bootstrap.min.js
βΒ Β βΒ Β βΒ Β βΒ Β βββ jquery.3.2.1.min.js
βΒ Β βΒ Β βΒ Β βΒ Β βββ popper.min.js
βΒ Β βΒ Β βΒ Β βββ demo.js
βΒ Β βΒ Β βΒ Β βββ light-bootstrap-dashboard.js
βΒ Β βΒ Β βΒ Β βββ plugins
βΒ Β βΒ Β βΒ Β βββ bootstrap-datepicker.js
βΒ Β βΒ Β βΒ Β βββ bootstrap-notify.js
βΒ Β βΒ Β βΒ Β βββ bootstrap-switch.js
βΒ Β βΒ Β βΒ Β βββ chartist.min.js
βΒ Β βΒ Β βΒ Β βββ nouislider.min.js
βΒ Β βΒ Β βββ sass
βΒ Β βΒ Β βββ lbd
βΒ Β βΒ Β βΒ Β βββ _alerts.scss
βΒ Β βΒ Β βΒ Β βββ _bootstrap-switch.scss
βΒ Β βΒ Β βΒ Β βββ _buttons.scss
βΒ Β βΒ Β βΒ Β βββ _cards.scss
βΒ Β βΒ Β βΒ Β βββ _chartist.scss
βΒ Β βΒ Β βΒ Β βββ _checkbox-radio-switch.scss
βΒ Β βΒ Β βΒ Β βββ _dropdown.scss
βΒ Β βΒ Β βΒ Β βββ _footers.scss
βΒ Β βΒ Β βΒ Β βββ _inputs.scss
βΒ Β βΒ Β βΒ Β βββ _misc.scss
βΒ Β βΒ Β βΒ Β βββ mixins
βΒ Β βΒ Β βΒ Β βΒ Β βββ _buttons.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _cards.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _chartist.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _icons.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _inputs.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _labels.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _morphing-buttons.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _navbars.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _social-buttons.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _tabs.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _transparency.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _vendor-prefixes.scss
βΒ Β βΒ Β βΒ Β βββ _mixins.scss
βΒ Β βΒ Β βΒ Β βββ _navbars.scss
βΒ Β βΒ Β βΒ Β βββ _partial-nucleo-icons.scss
βΒ Β βΒ Β βΒ Β βββ plugins
βΒ Β βΒ Β βΒ Β βΒ Β βββ _animate.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _datetime-picker.scss
βΒ Β βΒ Β βΒ Β βββ _responsive.scss
βΒ Β βΒ Β βΒ Β βββ _sidebar-and-main-panel.scss
βΒ Β βΒ Β βΒ Β βββ _tables.scss
βΒ Β βΒ Β βΒ Β βββ _typography.scss
βΒ Β βΒ Β βΒ Β βββ _variables.scss
βΒ Β βΒ Β βββ light-bootstrap-dashboard.scss
βΒ Β βββ robots.txt
βββ resources
βΒ Β βββ js
βΒ Β βΒ Β βββ app.js
βΒ Β βΒ Β βββ bootstrap.js
βΒ Β βΒ Β βββ components
βΒ Β βΒ Β βββ ExampleComponent.vue
βΒ Β βββ lang
βΒ Β βΒ Β βββ en
βΒ Β βΒ Β βββ auth.php
βΒ Β βΒ Β βββ pagination.php
βΒ Β βΒ Β βββ passwords.php
βΒ Β βΒ Β βββ validation.php
βΒ Β βββ sass
βΒ Β βΒ Β βββ app.scss
βΒ Β βΒ Β βββ _variables.scss
βΒ Β βββ views
βΒ Β βββ alerts
βΒ Β βΒ Β βββ errors.blade.php
βΒ Β βΒ Β βββ error_self_update.blade.php
βΒ Β βΒ Β βββ feedback.blade.php
βΒ Β βΒ Β βββ migrations_check.blade.php
βΒ Β βΒ Β βββ success.blade.php
βΒ Β βββ auth
βΒ Β βΒ Β βββ login.blade.php
βΒ Β βΒ Β βββ passwords
βΒ Β βΒ Β βΒ Β βββ email.blade.php
βΒ Β βΒ Β βΒ Β βββ reset.blade.php
βΒ Β βΒ Β βββ register.blade.php
βΒ Β βΒ Β βββ verify.blade.php
βΒ Β βββ dashboard.blade.php
βΒ Β βββ layouts
βΒ Β βΒ Β βββ app.blade.php
βΒ Β βΒ Β βββ footer
βΒ Β βΒ Β βΒ Β βββ nav.blade.php
βΒ Β βΒ Β βββ navbars
βΒ Β βΒ Β βββ navbar.blade.php
βΒ Β βΒ Β βββ navs
βΒ Β βΒ Β βΒ Β βββ auth.blade.php
βΒ Β βΒ Β βΒ Β βββ guest.blade.php
βΒ Β βΒ Β βββ sidebar.blade.php
βΒ Β βββ pages
βΒ Β βΒ Β βββ icons.blade.php
βΒ Β βΒ Β βββ maps.blade.php
βΒ Β βΒ Β βββ notifications.blade.php
βΒ Β βΒ Β βββ table.blade.php
βΒ Β βΒ Β βββ typography.blade.php
βΒ Β βΒ Β βββ upgrade.blade.php
βΒ Β βββ profile
βΒ Β βΒ Β βββ edit.blade.php
βΒ Β βββ users
βΒ Β βΒ Β βββ index.blade.php
βΒ Β βββ welcome.blade.php
βββ routes
βΒ Β βββ api.php
βΒ Β βββ channels.php
βΒ Β βββ console.php
βΒ Β βββ web.php
βββ server.php
βββ storage
βΒ Β βββ app
βΒ Β βΒ Β βββ public
βΒ Β βββ framework
βΒ Β βΒ Β βββ cache
βΒ Β βΒ Β βΒ Β βββ data
βΒ Β βΒ Β βΒ Β βββ 1a
βΒ Β βΒ Β βΒ Β βΒ Β βββ 43
βΒ Β βΒ Β βΒ Β βΒ Β βββ 1a43d4d8a10fba3a5857264007fd4f8494990eb9
βΒ Β βΒ Β βΒ Β βββ f0
βΒ Β βΒ Β βΒ Β βββ a7
βΒ Β βΒ Β βΒ Β βββ f0a70bbe9f0a2fbd95a4dee84fb8f092e00acc29
βΒ Β βΒ Β βββ sessions
βΒ Β βΒ Β βΒ Β βββ bDASqge6ugwwnupCJQxc6UpeCzU5mWnlBf3OtHbV
βΒ Β βΒ Β βββ testing
βΒ Β βΒ Β βββ views
βΒ Β βββ logs
βΒ Β βββ laravel-2019-08-07.log
βΒ Β βββ laravel-2019-08-08.log
βΒ Β βββ laravel-2019-08-09.log
βββ tests
βΒ Β βββ CreatesApplication.php
βΒ Β βββ Feature
βΒ Β βΒ Β βββ ExampleTest.php
βΒ Β βββ TestCase.php
βΒ Β βββ Unit
βΒ Β βββ ExampleTest.php
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://www.creative-tim.com/live/light-bootstrap-dashboard-laravel?ref=lbdl-readme
- Download Page: https://www.creative-tim.com/product/light-bootstrap-dashboard-laravel?ref=lbdl-readme
- Documentation: https://www.creative-tim.com/live/light-bootstrap-dashboard-laravel/?start-page=/docs/tutorial-components.html&ref=lbdl-readme
- License Agreement: https://www.creative-tim.com/license?ref=lbdl-readme
- Support: https://www.creative-tim.com/contact-us?ref=lbdl-readme
- Issues: Github Issues Page
- Dashboards:
HTML | LARAVEL |
---|---|
Please see the changelog for more information on what has changed recently.
We use GitHub Issues as the official bug tracker for the Light Bootstrap Dashboard Laravel. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the Light Bootstrap Dashboard Laravel. Check the CHANGELOG from your dashboard on our website.
- Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
- Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
- Copyright Creative Tim (https://www.creative-tim.com/?ref=lbdl-readme)
- Licensed under MIT (https://github.com/laravel-frontend-presets/light-bootstrap-dashboard/blob/master/license.md)
- Tutorials
- Affiliate Program (earn money)
- Blog Creative Tim
- Free Products from Creative Tim
- Premium Products from Creative Tim
- React Products from Creative Tim
- Angular Products from Creative Tim
- VueJS Products from Creative Tim
- More products from Creative Tim
- Check our Bundles here
Twitter: https://twitter.com/CreativeTim?ref=lbdl-readme
Facebook: https://www.facebook.com/CreativeTim?ref=lbdl-readme
Dribbble: https://dribbble.com/creativetim?ref=lbdl-readme
Instagram: https://www.instagram.com/CreativeTimOfficial?ref=lbdl-readme
Twitter: https://twitter.com/updivision?ref=lbdl-readme
Facebook: https://www.facebook.com/updivision?ref=lbdl-readme
Linkedin: https://www.linkedin.com/company/updivision?ref=lbdl-readme
Updivision Blog: https://updivision.com/blog/?ref=lbdl-readme