Laravel 12
Installation & Build
Installation & Build

We have used understandable and easy-to-understand instructions to help you install Domiex - Admin & Dashboard Template in your project. Follow the below steps to get started.

1. Download the Package
  • Source: Download the code from ThemeForest.
  • Format: The file will be in a .zip file format.
2. Unzip the file
  • Extract the contents of the downloaded .zip file to a directory on your computer. It will extract in the Domiex_v1.0.0 folder.
3. Xampp
  • Make sure to have the Xampp installed & running in your computer. PHP Version 8.2 or Higher must be required for Laravel 12.
4. Install Node.js and yarn (if not already installed)
  • Prerequisite: Ensure Node.js and npm (Node Package Manager) are installed on your system. Make sure to use node version 22.*.
  • Command: If Node.js is not installed, download and install it from the website. npm comes bundled with Node.js.
5. Installation
  • Make sure to have the Composer installed & running in your computer. make sure the composer version must be 2.8.3 or Higher.
  • Command: command to install all of the framework's dependencies.
    composer install
  • Command: Run the following command to install all the required Node.js packages and dependencies specified in the package.json file:
    yarn
  • Check public file if storage folder present then delete it. After run the below command to link storage with application.
    php artisan storage:link
  • Please fill your DB credentials in the .env file.
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=Domiex
    DB_USERNAME=root
    DB_PASSWORD= 
  • Generates a /dist & libs directory with all the production files.
  • yarn run build
  • Please run the following commands to clear all cache from the project.
    php artisan optimize:clear
  • Starts the development server with hot reloading.
    yarn run dev
  • The development server is accessible at http://localhost:8000. To run on other port just run command : php artisan serve --port=8001
    php artisan serve 
    php artisan serve --port=8001