• Stars
    star
    283
  • Rank 146,066 (Top 3 %)
  • Language Blade
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Free and open-source Laravel admin dashboard interface built with Livewire & Alpine.js based on Bootstrap 5

Volt Dashboard Laravel Tweet

Free Frontend Web App for Laravel with Livewire & Alpine.js

version license GitHub issues open GitHub issues closed

Volt Laravel Dashboard Preview

Never start a development project from scratch again. We've partnered with UPDIVISION to create the ultimate design & development toolbox, free for personal and commercial projects.

Volt Dashboard Laravel features dozens of handcrafted UI elements tailored for Bootstrap 5 and an out of the box Laravel backend. The Livewire integration allows you to build dynamic interfaces easier without leaving the comfort of your favourite framework. If you combine this even further with Alpine.js, you get the perfect combo for your next big project.

Ok, I`m in. So, what am I getting?

You're getting a lean, mean, app-building machine made of:

  • 100+ handcrafted UI components tailored for Bootstrap 5 with Vanilla JS. This means buttons, alerts, modals, datepickers and everything in between
  • 11 example pages to get you started
  • 3 lightweight plugins: datepicker, notification and charts library
  • Sass files & Gulp commands
  • fully-functional authentication system, register and user profile editing features built with Laravel
  • Livewire & Alpine.js integration

Free for personal and commercial projects

Whether you're working on a side project or delivering to a client, with Volt Dashboard Laravel you can do both. Volt Dashboard Laravel is released under MIT license, so you can use it for personal and commercial projects for free. Just start coding.

Detailed documentation & Gulp commands for an easy workflow

We also included detailed documentation for every component and feature so it helps in your development workflow. Plus you will get an advanced development workflow package including Sass files and a Gulp commands file.

Table of Contents

Versions

.

HTML React Laravel
Volt Bootstrap 5 Dashboard HTML Volt React Dashboard Volt Laravel Dashboard

Laravel

Sign in Sign up Profile Reset password
Sign in Sign up Reset password

Demo

Dashboard Transactions Profile Forms
Dashboard Transactions Profile Forms
Sign in Sign up Forgot password Reset password
Sign in Sign up Forgot Password Reset password
Lock Profile 404 Not Found 500 Server Error Documentation
Lock Profile 404 Not Found 500 Server Error

Installation

Prerequisites

If you don't already have an Apache local environment with PHP and MySQL, use one of the following links:

Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md

Laravel

  1. Download the project’s zip then copy and paste volt-dashboard-master folder in your projects folder. Rename the folder to your project’s name
  2. Make sure you have Node and Composer locally installed. 3.Run the following command in order to download all the project dependencies. composer install
  3. In your terminal run npm install
  4. Copy .env.example to .env and updated the configurations (mainly the database configuration)
  5. In your terminal run php artisan key:generate
  6. Run php artisan migrate --seed to create the database tables and seed the roles and users tables
  7. Run php artisan storage:link to create the storage symlink (if you are using Vagrant with Homestead for development, remember to ssh into your virtual machine and run the command from there).

Usage

Register a user or login using [email protected] and secret and start testing the Laravel app (make sure to run the migrations and seeders for these credentials to be available). Make sure to run the migrations and seeders for the above credentials to be available.

Make sure to run the migrations and seeders for the above credentials to be available.

Besides the dashboard and the auth pages this application 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.

Dashboard

You can access the dashboard either by using the "Dashboard" link in the left sidebar or by adding /dashboard in the URL.

Sign in

You have the option to log in using the email and password. To access this page, just click the "Page examples/ Sign in" link in the left sidebar or add /login in the URL.

The app/Http/Livewire/Auth/Login.php handles the log in process and validation.

   protected $rules = [
        'email' => 'required|email',
        'password' => 'required',
    ];

    public function login()
    {
        $credentials = $this->validate();
        return auth()->attempt($credentials)
                ? redirect()->intended('/profile')
                : $this->addError('email', trans('auth.failed'));
    }

Sign up

You have the option to register an user using the email and password. To access this page, just click the "Page examples/ Sign up" link in the left sidebar or add /register in the URL.

The app/Http/Livewire/Auth/Register.php handles the register process and validation.

    public function register()
    {
        $this->validate([
            'email' => 'required',
            'password' => 'required|same:passwordConfirmation|min:6',
        ]);

        $user = User::create([
            'email' =>$this->email,
            'password' => Hash::make($this->password),
            'remember_token' => Str::random(10),
        ]);

        auth()->login($user);

        return redirect('/profile');
    }

Forgot password

You have the option to send an email containing the password reset link to an user. To access this page, just click the "Page examples/ Forgot password" link in the left sidebar or add /forgot-password in the URL.

The app/Http/Livewire/ForgotPassword.php handles the email submission process.

    public function recoverPassword() {
        $this->validate();
        $user=User::where('email', $this->email)->first();
        $this->notify(new ResetPassword($user->id));
        $this->mailSentAlert = true;
        }
    }

The app/Notifications/ResetPassword.php handles the email submission itself. Here you can edit the overall layout of the email.

    public function toMail($notifiable)
    {
        $url = URL::signedRoute('reset-password', ['id' => $this->token]);
        return (new MailMessage)
                    ->subject('Reset your password')
                    ->line('Hey, did you forget your password? Click the button to reset it.')
                    ->action('Reset Password', $url)
                    ->line('Thank you for using our application!');
    }

Reset password

The email sent through the forgot password process will send the user to an unique link containing the password reset form. To access an example of this page, just click the "Page examples/ Reset password" link in the left sidebar or add /reset-password-example in the URL.

The app/Http/Livewire/ResetPassword.php handles the password reset process and validation.


    public function resetPassword() {
        $this->validate();
        $existingUser = User::where('email', $this->email)->first();
        if($existingUser && $existingUser->id == $this->urlId) {
            $existingUser->update([
                'password' => Hash::make($this->password)
            ]);
            $this->isPasswordChanged = true;
            $this->wrongEmail = false;
        }
        else {
            $this->wrongEmail = true;
        }
    }
    

User Profile

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 "Profile" link in the left sidebar or add /profile in the URL.

The app/Http/Livewire/Profile.php handles the update of the user information and password.

    public function mount() { $this->user = auth()->user(); }

    public function save()
    {
        $this->validate();

        $this->user->save();

        $this->showSavedAlert = true;
            
        }
    }

If you input the wrong data when editing the profile, don't worry. Validation rules have been added to prevent this.

    protected $rules = [
        'user.first_name' => 'max:15',
        'user.last_name' => 'max:20',
        'user.birthday' => 'date_format:Y-m-d',
        'user.email' => 'email',
        'user.phone' => 'numeric',
        'user.gender' => '',
        'user.address' => 'max:20',
        'user.number' => 'numeric',
        'user.city' => 'max:20',
        'user.zip' => 'numeric',
    ];

Documentation

The documentation for Volt is hosted on our website.

File Structure

Within the download you'll find the following directories and files:


β”œβ”€β”€ components
β”‚   β”œβ”€β”€ buttons.blade.php                       # Buttons page
β”‚   β”œβ”€β”€ forms.blade.php                         # Forms page
β”‚   β”œβ”€β”€ modals.blade.php                        # Modals page
β”‚   β”œβ”€β”€ notifications.blade.php                 # Notifications page
β”‚   └── typography.blade.php                    # Typography page
β”œβ”€β”€ dashboard.blade.php                         # Dashboard
β”œβ”€β”€ layouts
β”‚   β”œβ”€β”€ app.blade.php                           # Including layouts based on routes
β”‚   β”œβ”€β”€ base.blade.php                          # All the styles and scripts included
β”‚   β”œβ”€β”€ footer2.blade.php                       # Footer for pages without sidenav
β”‚   β”œβ”€β”€ footer.blade.php                        # Footer for pages with sidenav
β”‚   β”œβ”€β”€ nav.blade.php                           # Nav for mobile view 
β”‚   β”œβ”€β”€ sidenav.blade.php                       # The sidebar menu
β”‚   └── topbar.blade.php                        # Search bar, notifications and user area
β”œβ”€β”€ livewire                                    # All the pages that are using livewire functionality
β”‚   β”œβ”€β”€ auth                                    # Handles auth routes (login and register)
β”‚   β”‚   β”œβ”€β”€ login.blade.php                     
β”‚   β”‚   └── register.blade.php
β”‚   β”œβ”€β”€ forgot-password.blade.php               # Handles the forgot-password form
β”‚   β”œβ”€β”€ logout.blade.php                        # Logout functionality
β”‚   β”œβ”€β”€ profile.blade.php                       # Profile page
β”‚   β”œβ”€β”€ reset-password.blade.php                # Handles the reset password form
β”‚   └── users.blade.php                         # Users table
β”œβ”€β”€ upgrade-to-pro.blade.php                    # Upgrade to pro page
β”œβ”€β”€ lock.blade.php                              # Lock page
└── transactions.blade.php                      # Transactions page
β”œβ”€β”€ 404.blade.php                               # Error 404 page
β”œβ”€β”€ 500.blade.php                               # Error 500 page
β”œβ”€β”€ bootstrap-tables.blade.php                  # Bootstrap tables page                

Browser Support

At present, we officially aim to support the last two versions of the following browsers:

Resources

HTML React Laravel
Volt Bootstrap 5 Dashboard HTML Volt React Dashboard Volt React Dashboard

Change log

Please see the changelog for more information on what has changed recently.

Upgrade to Pro

Take front-end development to the next level by upgrading to the PRO version of Volt Laravel Admin Dashboard featuring over 3 times more components, plugin and pages and 5 times more Laravel features. You also get 6 months of premium support and free updates. Check out Volt Pro Premium Laravel Admin Dashboard.

Reporting Issues

We use GitHub Issues as the official bug tracker for Volt Laravel Admin Dashboard. Here are some advices for our users that want to report an issue:

  1. Make sure that you are using the latest version of Volt Laravel Admin Dashboard. Check the CHANGELOG from your dashboard on our website.
  2. Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
  3. Some issues may be browser specific, so specifying in what browser you encountered the issue might help.

Technical Support or Questions

If you have questions or need help integrating the product please contact us instead of opening an issue.

Licensing

Social Media

Themesberg

Twitter: https://twitter.com/themesberg

Facebook: https://www.facebook.com/themesberg/

Dribbble: https://dribbble.com/themesberg

Instagram: https://www.instagram.com/themesberg/

Updivision:

Twitter: https://twitter.com/updivision?ref=pdl-readme

Facebook: https://www.facebook.com/updivision?ref=pdl-readme

Linkedin: https://www.linkedin.com/company/updivision?ref=pdl-readme

Updivision Blog: https://updivision.com/blog/?ref=pdl-readme

Credits

More Repositories

1

flowbite

Open-source UI component library and front-end development framework based on Tailwind CSS
HTML
6,463
star
2

volt-bootstrap-5-dashboard

Free and open source Bootstrap 5 Admin Dashboard Template with vanilla Javascript
HTML
2,567
star
3

flowbite-react

Official React components built for Flowbite and Tailwind CSS
TypeScript
1,872
star
4

flowbite-svelte

Official Svelte components built for Flowbite and Tailwind CSS
Svelte
1,722
star
5

flowbite-admin-dashboard

Free and open-source admin dashboard template built with Tailwind CSS and Flowbite
HTML
1,348
star
6

volt-react-dashboard

Free and open source React.js admin dashboard template and UI library based on Bootstrap 5
JavaScript
858
star
7

tailwind-dashboard-windster

Free and open-source admin dashboard interface built on top of Tailwind CSS and Flowbite
HTML
837
star
8

neumorphism-ui-bootstrap

Neumorphism inspired UI Kit: web components, sections and pages in neumorphic style built with Bootstrap CSS Framework
HTML
829
star
9

flowbite-vue

Official Vue 3 components built for Flowbite and Tailwind CSS
Vue
768
star
10

landwind

Responsive and clean landing page built with Tailwind CSS and Flowbite
HTML
602
star
11

flowbite-astro-admin-dashboard

Open-source admin dashboard template built with Astro, Flowbite, and Tailwind CSS
Astro
544
star
12

pixel-bootstrap-ui-kit

Pixel UI Kit - Free and open source Bootstrap 5 UI Kit without jQuery
HTML
530
star
13

windows-95-ui-kit

πŸ’Ύ Windows 95 UI Kit made with Bootstrap 4 components
CSS
464
star
14

glass-ui

CSS UI library based on the glassmorphism design specifications
309
star
15

flowbite-angular

Official Angular components built for Flowbite and Tailwind CSS
TypeScript
182
star
16

simple-bootstrap-5-dashboard

Simple Bootstrap 5 Admin Dashboard Template
HTML
164
star
17

swipe-one-page-bootstrap-5

πŸ‘† Swipe - One Page Bootstrap 5 Template for Mobile Applications
SCSS
162
star
18

flowbite-icons

Free and open-source collection of SVG icons built for Flowbite and Tailwind CSS
151
star
19

flowbite-svelte-admin-dashboard

Free and open-source admin dashboard template built with Flowbite, Svelte, and Tailwind CSS
Svelte
95
star
20

tailwind-landing-page

A responsive landing page built with Tailwind CSS and Flowbite Blocks
HTML
90
star
21

flow-ui

Accessibility oriented design system for developing fast and powerful web interfaces.
89
star
22

flowbite-react-admin-dashboard

A free and open-source admin dashboard interface built with Flowbite, React, and Tailwind CSS
TypeScript
66
star
23

tailwind-figma-ui-kit

FlowBite is a free and open-source set of UI components and pages in Figma built for Tailwind CSS
63
star
24

flowbite-svelte-blocks

Flowbite-Svelte-Blocks components
Svelte
63
star
25

tailwind-flask-starter

Tailwind CSS and Flask starter project with Flowbite included
HTML
52
star
26

tailwind-vue-starter

A free and open-source starter project to help you get started with the core Flowbite Library components and Vue 3
Vue
47
star
27

flowbite-svelte-icons

Official library for the free and open-source collection of over 430+ SVG icons for Flowbite and Svelte
Svelte
41
star
28

tailwind-nuxt-starter

A free and open-source starter project to help you get started with the core Flowbite Library components and Nuxt.js
Vue
39
star
29

gpt-3-tailwindcss

GPT-3 Tailwind CSS Code Generator
37
star
30

flowbite-blazor

Official open-source UI component library for Blazor (.NET), Flowbite and Tailwind CSS
HTML
32
star
31

tailwind-phoenix-starter

Free and open-source starter kit for Phoenix (Elixir), Tailwind CSS and Flowbite
HTML
29
star
32

tailwind-astro-starter

Free and open-source starter project to help you get started with Astro, Tailwind CSS and Flowbite
Astro
23
star
33

flowbite-laravel

PHP
19
star
34

tailwind-css-tutorial

Tailwind CSS Tutorial Project Files
CSS
19
star
35

tailwind-typescript-starter

A free and open-source starter kit that helps you get started with Tailwind CSS, TypeScript and Flowbite
TypeScript
18
star
36

figma-admin-dashboard-template

Free and open-source Figma Admin Dashboard template
16
star
37

tailwind-blazor-starter

Open-source project to get you started with Tailwind CSS, Blazor, and the Flowbite UI components
HTML
14
star
38

simple-gulp-bootstrap-sass-browsersync-boilerplate

Files for the Gulp 4, Bootstrap, Sass and BrowserSync setup tutorial on Themesberg
CSS
14
star
39

bootstrap-5-tutorial

Bootstrap 5 tutorial with Gulp, Sass, BrowserSync, and Vanilla JS
HTML
13
star
40

tailwind-symfony-starter

Free and open-source starter kit for Symfony (PHP), Tailwind CSS and Flowbite
Twig
13
star
41

flowbite-react-icons

Flowbite React Icon library is the official collection of SVG icons, provided freely and as open-source
TypeScript
8
star
42

tailwind-angular-starter

Free and open-source starter project to help you get started with Angular, Tailwind CSS and the Flowbite UI components
HTML
8
star
43

flowbite-snippets

Code snippets from the Flowbite UI component library that you can use inside VS Code
JavaScript
7
star
44

tailwind-solidjs-starter

Free and open-source starter project for SolidJS, Tailwind CSS and Flowbite
JavaScript
6
star
45

th-volt-pro-laravel-admin-dashboard

Fullstack tool featuring Laravel CRUDs, hundreds of UI components and dozens of example pages.
6
star
46

pixel-pro-bootstrap-ui-kit

Official public repository for Pixel Pro Bootstrap UI Kit
6
star
47

flowbite-blade-icons

Official collection of Flowbite SVG icons in Blade
PHP
6
star
48

tailwind-qwik-starter

Open-source starter project for Qwik, Tailwind CSS, and Flowbite
TypeScript
3
star
49

tailwind-gatsby-starter

Free and open-source starter project for Gatsby, Tailwind CSS and Flowbite
JavaScript
3
star
50

flowbite-nuxt-module

Open-source module for Nuxt with auto import for the Flowbite Vue library
TypeScript
3
star
51

th-neumorphism-ui-pro

Neumorphism inspired premium Bootstrap UI Kit
2
star
52

tailwind-remix-starter

Free and open-source starter kit that helps you get started with Tailwind CSS, Remix and Flowbite React
CSS
2
star
53

flowbite-express

Flowbite-Express
EJS
2
star
54

flowbite-phoenix

Official Flowbite UI components built for the Phoenix framework based on Tailwind CSS
Elixir
1
star
55

.github

Ecosystem of open-source projects, libraries and tools built by the team behind Flowbite
1
star
56

flowbite-vue-icons

Official library for the free and open-source collection of over 430+ SVG icons for Flowbite and Vue
1
star