This is a Laravel-based web application. This guide will help you set up the project for local development.
git clone <repository-url>
cd <project-directory>
composer install
npm install
npm run build
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan storage:link
composer run dev