This is an web application for managing human resources in a company. It was built using Laravel 8.
The application was a requirement for my college "On the Job Training" studies in a company that I've worked for.
- Click on
<> Code
button - Copy the HTTPS/SSH repository link
- Run
git clone
command on your terminal. - Install the necessary dependencies by running
composer install
- Creating .env file by
cp .env.example .env
and fill in the necessary fields, e.g.: database connection, etc. - Generate the application key by running
php artisan key:generate
- Next, run the database migration with this
php artisan migrate
command. - You can seed the database with
php artisan db:seed
command. - Lastly, serve the application with this
php artisan serve
command. - The HRMS application should accessible on your browser on "http://localhost:8000"
You can log into the application with this credentials (if you did the database seeding).
- Username:
admin@gmail.com
- Password:
admin