File structure

Learn more about the file structure for Volt Laravel Admin Dashboard

Source files

The following folders and files are considered as “source” files as these are which you are supposed to work with when developing.

    ```
    ├── 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                
    ```