Installation


The following process will be used to install Laravel Admin Dashboard

  • Install Node.js : Download and install latest version of Node.js from Node JS. The minimum required version is 16+.
  • node -v
  • Install Composer : Download and install latest version of Composer from Composer
  • composer --version
  • Now, Install the composer dependencies
  • composer install
  • Install NPM dependencies.
  • npm install
  • Generate your application encryption key.
  • php artisan key:generate
  • Change Database name inside .env file.
  • DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=laravel
    DB_USERNAME=root
    DB_PASSWORD=
  • Start the localhost server
  • php artisan serve
  • Start the Vite server
  • npm run dev
  • Open the following pages to preview (Note:- These links are for localhost only)
  • LTR Versions

    RTL Versions

  • Build the file for production
  • npm run build