Getting Started: Installing Your Template

Follow these steps to get started with the template:

  1. Upload Files to Your Server:
    • Use FTP to upload the files to your server.
  2. Maintain the Folder Structure:
    • Ensure you maintain the structure while uploading the required files/folders:
    Dashboard folder:
    laravel
    ├── app
    │   ├── Console
    │   ├── DataTables
    │   ├── Exceptions
    │   ├── Helpers
    │   ├── Http
    │   │   ├── Controllers
    │   │   ├── Middleware
    │   │   ├── Requests
    │   │   └── Resources
    │   ├── Models
    │   ├── old_Models
    │   ├── Providers
    │   └── View
    ├──  bootstrap
    ├──  config
    ├── database
    │   ├── factories
    │   ├── migrations
    │   └── seeds
    ├── Documentation
    ├── public
    │   ├── client-images
    │   ├── css
    │   ├── fonts
    │   ├── images
    │   ├── js
    │   ├── resources
    │   ├── scss
    │   └── vendor
    ├── resources
    │   ├── css
    │   ├── js
    │   ├── lang
    │   ├── sass
    │   └── views
    │       ├── auth
    │       ├── blog
    │       ├── components
    │       ├── dashboards
    │       ├── footer
    │       ├── global
    │       ├── layouts
    │       ├── mailbox
    │       ├── market
    │       ├── module
    │       ├── old_user
    │       ├── pages
    │       ├── partials
    │       ├── permission-role
    │       ├── profile
    │       ├── role-permission
    │       ├── store
    │       ├── ui
    │       └── users
    ├── routes
    ├── storage
    ├── tests
    ├── .env.example
    ├── .gitignore
    ├── composer.json
    ├── composer.lock
    ├── package.json
    ├── phpunit.xml
    ├── server.php
    └── webpack.mix.js
    
      
    
    Note: Other files can be used according to your convenience.
  3. Completion.
    • Now that you have followed these steps, your basic installation is complete. Your site or dashboard is ready to be showcased to the world!