Installation
Installation – How to Install & Run
Follow these steps to install and run the Aquiry Admin Template. You can use either Yarn depending on your preference.
Prerequisites – Tools & Environment :
- Node.js (v22 or higher) – runtime environment
- Yarn – package manager
- Vite – module bundler
- Composer – dependency manager for PHP
- Xampp – local server environments for PHP development
Installation :
Download the Package
Download the code from ThemeForest. The file will be in a.zip file format.
Unzip the file
Extract the contents of the downloaded.zip file to a directory on your computer. It will extract in the Aquiry_v1.2.0 folder..
Install Node.js and yarn (if not already installed)
Ensure Node.js and npm (Node Package Manager) are installed on your system. Make sure to use node version 22.*.
If Node.js is not installed, download and install it from the website. npm comes bundled with Node.js.
Installation
Make sure to have the Composer installed & running in your computer. make sure the composer version must be 2.8.3 or Higher..
If Composer is not installed, download and install it from the website.
Install Composer
Command to install all of the framework's dependencies.
composer install
Install Node Modules
Open your terminal or command prompt from the Aquiry_v1.2.0/Laravel/Admin folder.
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=aquiry-laravel
DB_USERNAME=root
DB_PASSWORD=
Build for Production
Generate optimized production filesyarn run build
Please run the following commands to clear all cache from the project.
php artisan optimize:clear
Run Development Server
Start the local server to preview the projectcomposer run dev
Open http://localhost:8000 in your browser.