Getting Started: Installing Your Template

Follow these steps to get started with the template:

  1. Select Your Template Folder:
    • Choose either the Frontend Page or Dashboard folder based on your needs to find all the template files
  2. Upload Files to Your Server:
    • Use FTP to upload the files to your server.
  3. Maintain the Folder Structure:
    • Ensure you maintain the structure while uploading the required files/folders:
    Folder Structure:
    laravel
    ├── app/
    │   ├── Console/
    │   ├── Event/
    │   ├── Exceptions/
    │   ├── Helpers/
    │   ├── Http/
    │   │   ├── Controllers/
    │   │   ├── Middleware/
    │   │   ├── Requests/
    │   ├── Models/
    │   ├── Providers/
    │   ├── View/
    ├── bootstrap/
    ├── config/
    ├── database/
    ├── lang/
    ├── Modules/
    │   ├── frontend/
    │   │   ├── app/
    │   │   │   ├── Http/
    │   │   │   ├── Models/
    │   │   │   ├── Providers/
    │   │   ├── config/
    │   │   ├── database/
    │   │   ├── lang/
    │   │   ├── resources/
    │   │   │   ├── assets/
    │   │   │   ├── views/
    │   │   │   │   ├── components/
    │   │   │   │   ├── layouts/
    │   │   │   │   ├── Pages/
    │   │   ├── routes/
    │   │   ├── composer.json
    │   │   ├── module.json
    │   │   ├── package-lock.json
    │   │   ├── package.json
    │   │   └── vite.config.js
    ├── public/
    │   ├── build/
    │   ├── build-frontend/
    │   ├── dashboard/
    │   │   ├── images/
    │   │   ├── js/
    │   │   ├── scss/
    │   │   └── vendor/
    │   ├── frontend/
    │   │   ├── images/
    │   │   ├── js/
    │   │   ├── scss/
    │   │   └── vendor/
    ├── resources/
    │   ├── css/
    │   ├── js/
    │   └── views/
    │       ├── auth/
    │       │   ├── TwoFactor.blade.php
    │       ├── components/
    │       └── DashboardPages/
    │           ├── admin/
    │           ├── auth/
    │           ├── errors/
    │           ├── extra/
    │           ├── forms/
    │           ├── icons/
    │           ├── maps/
    │           ├── partials/
    │           ├── rating/
    │           ├── spacial-pages/
    │           ├── tables/
    │           ├── ui-elements/
    │           ├── user/
    │           ├── widgets/
    │           ├── AnalyticsPage.blade.php
    │           ├── BlankPage.blade.php
    │           ├── CategoryListPage.blade.php
    │           ├── CommentPage.blade.php
    │           ├── EpisodesPage.blade.php
    │           ├── IndexPage.blade.php
    │           ├── MovieListPage.blade.php
    │           ├── SeasonsPage.blade.php
    │           ├── ShowListPage.blade.php
    │           ├── user-privacy-setting.blade.php
    │           └── user-profile.blade.php
    │       ├── global/
    │       └── layouts/
    ├── routes/
    ├── storage/
    ├── stubs/
    ├── tests/
    ├── .env.example
    ├── composer.json
    ├── composer.lock
    ├── modules_statuses.json
    ├── package.json
    ├── phpunit.xml
    ├── postcss.config.js
    ├── tailwind.config.js
    ├── vite-module-loader.js
    └── vite.config.js
    
    
    Note: Other files can be used according to your convenience.
  4. 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!