Frontend version: Now UI Dashboard v1.4.1. More info at https://www.creative-tim.com/product/now-ui-dashboard/?ref=ndl-readme
Speed up your web development with the Bootstrap 4 Admin Dashboard built for Laravel Framework 11.x and up.
If you want to get more features, go PRO with Now UI Dashboard PRO Laravel.
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/11.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/now-ui-dashboard
. No need to register the service provider. Laravel 5.5 & up can auto detect the package. - Run
php artisan ui nowui
command to install the NowUI 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 now-ui-master folder in presets (created in step 2) and rename it to NowUi
- Open
composer.json
file - Add
"LaravelFrontendPresets\\NowUiPreset\\": "presets/NowUi/src"
toautoload/psr-4
and toautoload-dev/psr-4
- Add
LaravelFrontendPresets\NowUiPreset\NowUiPresetServiceProvider::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 nowui
command to install the NowUI 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
To start testing the theme, register as a user or log in using one of the default users:
- admin type - [email protected] with the password secret
Make sure to run the migrations and seeders for the above credentials to be available.
In addition to the features included in the free preset, the Pro theme also has a role management example with an updated user management, as well as tag management, category management and item management examples. 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 the features can be viewed once you log in using the credentials provided above or by registering your own user.
You can access the dashboard either by using the "Dashboards/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 information (name, email, profile picture) and password. To access this page, just click the "Examples/Profile" link in the left sidebar or add /profile in the URL.
The App\Http\Controllers\ProfileController
handles the update of the user information and password.
public function update(ProfileRequest $request)
{
auth()->user()->update(
$request->merge(['picture' => $request->photo ? $request->photo->store('profile', 'public') : null])
->except([$request->hasFile('photo') ? '' : 'picture'])
);
return back()->withStatus(__('Profile successfully updated.'));
}
/**
* Change the password
*
* @param \App\Http\Requests\PasswordRequest $request
* @return \Illuminate\Http\RedirectResponse
*/
public function password(PasswordRequest $request)
{
auth()->user()->update(['password' => Hash::make($request->get('password'))]);
return back()->withStatus(__('Password successfully updated.'));
}
If you input the wrong data when editing the profile, don't worry. Validation rules have been added to prevent this (see App\Http\Requests\ProfileRequest
). If you try to change the password, you will see that additional validation rules have been added in App\Http\Requests\PasswordRequest
. You also 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 |
---|---|
Login | Dashboard |
---|---|
Profile Page | Users Page |
---|---|
View More |
The documentation for the now-ui Dashboard Laravel is hosted at our website.
βββ changelog.md
βββ composer.json
βββ docs
βΒ Β βββ documentation.html
βββ .git
βΒ Β βββ branches
βΒ Β βββ COMMIT_EDITMSG
βΒ Β βββ config
βΒ Β βββ description
βΒ Β βββ HEAD
βΒ Β βββ hooks
βΒ Β βΒ Β βββ applypatch-msg.sample
βΒ Β βΒ Β βββ commit-msg.sample
βΒ Β βΒ Β βββ fsmonitor-watchman.sample
βΒ Β βΒ Β βββ post-update.sample
βΒ Β βΒ Β βββ pre-applypatch.sample
βΒ Β βΒ Β βββ pre-commit.sample
βΒ Β βΒ Β βββ prepare-commit-msg.sample
βΒ Β βΒ Β βββ pre-push.sample
βΒ Β βΒ Β βββ pre-rebase.sample
βΒ Β βΒ Β βββ pre-receive.sample
βΒ Β βΒ Β βββ update.sample
βΒ Β βββ index
βΒ Β βββ info
βΒ Β βΒ Β βββ exclude
βΒ Β βββ logs
βΒ Β βΒ Β βββ HEAD
βΒ Β βΒ Β βββ refs
βΒ Β βΒ Β βββ heads
βΒ Β βΒ Β βΒ Β βββ develop
βΒ Β βΒ Β βΒ Β βββ master
βΒ Β βΒ Β βββ remotes
βΒ Β βΒ Β βββ origin
βΒ Β βΒ Β βββ develop
βΒ Β βββ objects
βΒ Β βββ refs
βΒ Β βββ heads
βΒ Β βΒ Β βββ develop
βΒ Β βΒ Β βββ master
βΒ Β βββ remotes
βΒ Β βΒ Β βββ origin
βΒ Β βΒ Β βββ develop
βΒ Β βββ tags
βββ license.md
βββ README.md
βββ screens
βΒ Β βββ Dashboard.png
βΒ Β βββ login.png
βΒ Β βββ Profile.png
βΒ Β βββ Users.png
βββ src
βΒ Β βββ NowUiPreset.php
βΒ Β βββ NowUIPresetServiceProvider.php
βΒ Β βββ now-ui-stubs
βΒ Β βββ app
βΒ Β βΒ Β βββ Console
βΒ Β βΒ Β βΒ Β βββ comments
βΒ Β βΒ Β βΒ Β βΒ Β βββ DeleteOldUsers.php
βΒ Β βΒ Β βΒ Β βββ 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
βΒ Β βΒ Β βΒ Β βββ CategoryRequest.php
βΒ Β βΒ Β βΒ Β βββ ItemRequest.php
βΒ Β βΒ Β βΒ Β βββ PasswordRequest.php
βΒ Β βΒ Β βΒ Β βββ ProfileRequest.php
βΒ Β βΒ Β βΒ Β βββ TagRequest.php
βΒ Β βΒ Β βΒ Β βββ UserRequest.php
βΒ Β βΒ Β βββ Observers
βΒ Β βΒ Β βΒ Β βββ UserObserver.php
βΒ Β βΒ Β βββ Policies
βΒ Β βΒ Β βΒ Β βββ UserPolicy.php
βΒ Β βΒ Β βββ Providers
βΒ Β βΒ Β βΒ Β βββ AppServiceProvider.php
βΒ Β βΒ Β βΒ Β βββ AuthServiceProvider.php
βΒ Β βΒ Β βΒ Β βββ BroadcastServiceProvider.php
βΒ Β βΒ Β βΒ Β βββ EventServiceProvider.php
βΒ Β βΒ Β βΒ Β βββ RouteServiceProvider.php
βΒ Β βΒ Β βββ Rules
βΒ Β βΒ Β βΒ Β βββ CurrentPasswordCheckRule.php
βΒ Β βΒ Β βββ User.php
βΒ Β βββ database
βΒ Β βΒ Β βββ factories
βΒ Β βΒ Β βΒ Β βββ UserFactory.php
βΒ Β βΒ Β βββ .gitignore
βΒ Β βΒ Β βββ migrations
βΒ Β βΒ Β βΒ Β βββ 2014_10_12_100000_create_password_resets_table.php
βΒ Β βΒ Β βΒ Β βββ 2019_01_15_110000_create_users_table.php
βΒ Β βΒ Β βββ seeds
βΒ Β βΒ Β βββ DatabaseSeeder.php
βΒ Β βΒ Β βββ UsersTableSeeder.php
βΒ Β βββ resources
βΒ Β βββ assets
βΒ Β βΒ Β βββ css
βΒ Β βΒ Β βΒ Β βββ bootstrap.min.css
βΒ Β βΒ Β βΒ Β βββ bootstrap.min.css.map
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.css
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.css.map
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.min.css
βΒ Β βΒ Β βββ demo
βΒ Β βΒ Β βΒ Β βββ demo.css
βΒ Β βΒ Β βΒ Β βββ demo.js
βΒ Β βΒ Β βββ fonts
βΒ Β βΒ Β βΒ Β βββ nucleo-license.md
βΒ Β βΒ Β βΒ Β βββ nucleo-outline.eot
βΒ Β βΒ Β βΒ Β βββ nucleo-outline.ttf
βΒ Β βΒ Β βΒ Β βββ nucleo-outline.woff
βΒ Β βΒ Β βΒ Β βββ nucleo-outline.woff2
βΒ Β βΒ Β βββ img
βΒ Β βΒ Β βΒ Β βββ apple-icon.png
βΒ Β βΒ Β βΒ Β βββ bg14.jpg
βΒ Β βΒ Β βΒ Β βββ bg16.jpg
βΒ Β βΒ Β βΒ Β βββ bg5.jpg
βΒ Β βΒ Β βΒ Β βββ default-avatar.png
βΒ Β βΒ Β βΒ Β βββ favicon.png
βΒ Β βΒ Β βΒ Β βββ header.jpg
βΒ Β βΒ Β βΒ Β βββ mike.jpg
βΒ Β βΒ Β βΒ Β βββ now-logo.png
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.gif
βΒ Β βΒ Β βββ js
βΒ Β βΒ Β βΒ Β βββ core
βΒ Β βΒ Β βΒ Β βΒ Β βββ bootstrap.min.js
βΒ Β βΒ Β βΒ Β βΒ Β βββ jquery.min.js
βΒ Β βΒ Β βΒ Β βΒ Β βββ popper.min.js
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.js
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.js.map
βΒ Β βΒ Β βΒ Β βββ now-ui-dashboard.min.js
βΒ Β βΒ Β βΒ Β βββ plugins
βΒ Β βΒ Β βΒ Β βββ bootstrap-notify.js
βΒ Β βΒ Β βΒ Β βββ chartjs.min.js
βΒ Β βΒ Β βΒ Β βββ perfect-scrollbar.jquery.min.js
βΒ Β βΒ Β βββ scss
βΒ Β βΒ Β βββ now-ui-dashboard
βΒ Β βΒ Β βΒ Β βββ _alerts.scss
βΒ Β βΒ Β βΒ Β βββ _buttons.scss
βΒ Β βΒ Β βΒ Β βββ cards
βΒ Β βΒ Β βΒ Β βΒ Β βββ _card-chart.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _card-map.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _card-plain.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _card-user.scss
βΒ Β βΒ Β βΒ Β βββ _cards.scss
βΒ Β βΒ Β βΒ Β βββ _checkboxes-radio.scss
βΒ Β βΒ Β βΒ Β βββ _dropdown.scss
βΒ Β βΒ Β βΒ Β βββ _fixed-plugin.scss
βΒ Β βΒ Β βΒ Β βββ _footers.scss
βΒ Β βΒ Β βΒ Β βββ _images.scss
βΒ Β βΒ Β βΒ Β βββ _inputs.scss
βΒ Β βΒ Β βΒ Β βββ _misc.scss
βΒ Β βΒ Β βΒ Β βββ mixins
βΒ Β βΒ Β βΒ Β βΒ Β βββ _buttons.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _cards.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _dropdown.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _inputs.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _page-header.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _sidebar.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _transparency.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _vendor-prefixes.scss
βΒ Β βΒ Β βΒ Β βββ _mixins.scss
βΒ Β βΒ Β βΒ Β βββ _navbar.scss
βΒ Β βΒ Β βΒ Β βββ _nucleo-outline.scss
βΒ Β βΒ Β βΒ Β βββ _page-header.scss
βΒ Β βΒ Β βΒ Β βββ plugins
βΒ Β βΒ Β βΒ Β βΒ Β βββ _plugin-animate-bootstrap-notify.scss
βΒ Β βΒ Β βΒ Β βΒ Β βββ _plugin-perfect-scrollbar.scss
βΒ Β βΒ Β βΒ Β βββ _responsive.scss
βΒ Β βΒ Β βΒ Β βββ _sidebar-and-main-panel.scss
βΒ Β βΒ Β βΒ Β βββ _tables.scss
βΒ Β βΒ Β βΒ Β βββ _typography.scss
βΒ Β βΒ Β βΒ Β βββ _variables.scss
βΒ Β βΒ Β βββ now-ui-dashboard.scss
βΒ Β βββ 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
βΒ Β βββ home.blade.php
βΒ Β βββ layouts
βΒ Β βΒ Β βββ app.blade.php
βΒ Β βΒ Β βββ footer.blade.php
βΒ Β βΒ Β βββ navbars
βΒ Β βΒ Β βΒ Β βββ navs
βΒ Β βΒ Β βΒ Β βΒ Β βββ auth.blade.php
βΒ Β βΒ Β βΒ Β βΒ Β βββ guest.blade.php
βΒ Β βΒ Β βΒ Β βββ sidebar.blade.php
βΒ Β βΒ Β βββ page_template
βΒ Β βΒ Β βββ auth.blade.php
βΒ Β βΒ Β βββ guest.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
βββ .vscode
βββ settings.json
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://www.creative-tim.com/live/now-ui-dashboard-laravel/?ref=ndl-readme
- Download Page: https://www.creative-tim.com/product/now-ui-dashboard-laravel?ref=ndl-readme
- Documentation: https://www.creative-tim.com/live/now-ui-dashboard-laravel/?start-page=/docs/getting-started/laravel-setup.html&ref=ndl-readme
- License Agreement: https://www.creative-tim.com/license?ref=ndl-readme
- Support: https://www.creative-tim.com/contact-us?ref=ndl-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 now-ui 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 now-ui 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=ndl-readme)
- Licensed under MIT (https://github.com/laravel-frontend-presets/now-ui-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=ndl-readme
Facebook: https://www.facebook.com/CreativeTim?ref=ndl-readme
Dribbble: https://dribbble.com/creativetim?ref=ndl-readme
Instagram: https://www.instagram.com/CreativeTimOfficial?ref=ndl-readme
Twitter: https://twitter.com/updivision?ref=ndl-readme
Facebook: https://www.facebook.com/updivision?ref=ndl-readme
Linkedin: https://www.linkedin.com/company/updivision?ref=ndl-readme
Updivision Blog: https://updivision.com/blog/?ref=ndl-readme