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.


.
├── bootstrap-tables.blade.php                  # Bootstrap tables page
├── calendar.blade.php                          # Calendar page
├── components
│   ├── button                                  # Dropdown button component
│   │   └── link.blade.php
│   ├── date-picker.blade.php                   # Datepicker component
│   ├── input                                   # Select input component
│   │   └── select.blade.php
│   ├── table                                   # Table template
│   │   ├── cell.blade.php
│   │   ├── heading.blade.php
│   │   └── row.blade.php
│   └── table.blade.php
├── dashboard                                   # All the dashboard pages
│   ├── app-analysis.blade.php
│   ├── dashboard.blade.php
│   └── traffic-sources.blade.php
├── datatables.blade.php
├── errors
│   ├── 404.blade.php                           # Error 404 page
│   └── 500.blade.php                           # Error 500 page
├── 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
│   ├── auth                                    # Handles auth routes (login, register, logout, reset password)
│   │   ├── forgot-password.blade.php
│   │   ├── logout.blade.php
│   │   ├── reset-password.blade.php
│   │   ├── sign-in.blade.php
│   │   └── sign-up.blade.php
│   ├── categories.blade.php                    # Categories table
│   ├── 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
│   ├── edit-category.blade.php
│   ├── edit-item.blade.php
│   ├── edit-role.blade.php
│   ├── edit-tag.blade.php
│   ├── edit-user.blade.php
│   ├── examples                                # Examples pages
│   │   ├── billing.blade.php
│   │   ├── err404.blade.php
│   │   ├── err500.blade.php
│   │   ├── forgot-password-example.blade.php
│   │   ├── invoice.blade.php
│   │   ├── lock.blade.php
│   │   ├── pricing.blade.php
│   │   ├── profile-example.blade.php
│   │   ├── reset-password-example.blade.php
│   │   ├── sign-in-example.blade.php
│   │   └── sign-up-example.blade.php
│   ├── items.blade.php                         # Items table
│   ├── kanban.blade.php                        # Kanban page
│   ├── messages.blade.php                      # Messages page
│   ├── new-category.blade.php
│   ├── new-item.blade.php
│   ├── new-role.blade.php
│   ├── new-tag.blade.php
│   ├── new-user.blade.php
│   ├── profile.blade.php                       # Profile page
│   ├── roles.blade.php                         # Roles table
│   ├── single-message.blade.php                # Single message page
│   ├── tags.blade.php                          # Tags table
│   ├── users.blade.php                         # Users table
│   └── widgets.blade.php                       # Widgets page
├── map.blade.php                               # Map page
├── tasks.blade.php                             # Tasks page
├── transactions.blade.php                      # Transactions page