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:
    Folder Structure:
    Laravel
    ├── app
    ├── bootstrap
    ├── config
    ├──  database
    ├── Modules
    │   ├── Appointment
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── Blog
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── Chat
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── ECommerce
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── FileManager
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── LandingPages
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── Mail
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    │   ├── Social
    │   │   ├── Config
    │   │   ├── Console
    │   │   ├── Database
    │   │   ├── Entities
    │   │   ├── Http
    │   │   ├── Providers
    │   │   ├── Resources
    │   │   ├── Routes
    │   │   ├── Tests
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package.json
    │   │   └── webpack.mix.js
    ├── public
    │   ├── css
    │   ├── images
    │   ├── js
    │   ├── laravel-js
    │   ├── modules
    │   ├── scss
    │   └── vendor
    ├── resources
    │   ├── css
    │   ├── js
    │   ├── lang
    │   ├── sass
    │   └── views
    │       ├── auth
    │       ├── components
    │       ├── dashboards
    │       ├── errors
    │       ├── forms
    │       ├── global
    │       ├── icons
    │       ├── landing-pages
    │       ├── layouts
    │       ├── maps
    │       ├── permission-role
    │       ├── plugins
    │       ├── special-pages
    │       ├── table
    │       ├── users
    │       ├── vendor
    │       ├── widget
    │       ├── blankpage.blade.php
    │       ├── privacy-policy.blade.php
    │       ├── terms-of-use.blade.php
    │       └── uisheet.blade.php
    ├── routes
    │   ├── api.php
    │   ├── auth.php
    │   ├── channels.php
    │   ├── console.php
    │   └── web.php
    ├── storage
    ├── stubs
    ├── tests
    ├── .env.example
    ├── composer.json
    ├── modules_statuses.json
    ├── package-lock.json
    ├── package.json
    ├── phpunit.xml
    ├── README.md
    └── 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!