DTHOCM - Complaint Management System
- Download Project Locally git clone https://github.com/hsengar/dthocm.git
- cd into your project open cmd and now goto your project folder using cd command
- Install Composer Dependencies write command "composer install" in cmd
- Create .env file Copy .env.example file contents and create new .env file and paste the copied contents "cp .env.example .env" in cmd
- Generate App Encryption Key "php artisan key:generate" in cmd
- Create an Empty Database in Phpmyadmin
- Write database name DB_DATABASE=databasename in .env file
- migrate the database "php artisan migrate" in cmd
- now your laravel project is ready to just write "php artisan serve" in cmd.