Now-ui Dashboard Laravel
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 9.x and up.
If you want to get more features, go PRO with Now UI Dashboard PRO Laravel.
Prerequisites
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: https://howtoubuntu.org/how-to-install-lamp-on-ubuntu
- Mac: https://wpshout.com/quick-guides/how-to-install-mamp-on-your-mac/
Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md
And Laravel: https://laravel.com/docs/9.x/installation
Installation
After initializing a fresh instance of Laravel (and making all the necessary configurations), install the preset using one of the provided methods:
Via composer
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
By using the archive
- 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
Usage
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.
Dashboard
You can access the dashboard either by using the "Dashboards/Dashboard" link in the left sidebar or by adding /home in the URL.
Profile edit
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'],
];
}
Table of Contents
- Versions
- Demo
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Licensing
- Useful Links
Versions
HTML | LARAVEL |
---|---|
Demo
Login | Dashboard |
---|---|
Profile Page | Users Page |
---|---|
View More |
Documentation
The documentation for the now-ui Dashboard Laravel is hosted at our website.
File Structure
โโโ 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
Browser Support
At present, we officially aim to support the last two versions of the following browsers:
Resources
- 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 |
---|---|
Change log
Please see the changelog for more information on what has changed recently.
Credits
Reporting Issues
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.
Licensing
- 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)
Useful Links
- 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
Social Media
Creative Tim:
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
Updivision:
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