Scholarship Application System is an online application which helps those applicants who are residents in General Santos City to lessen their effort applying for Edukar scholarship. System filters the most qualified applicants from registration to application and to rate the applicant based on their profile information which helps scholarship coordinator to determine who is the qualified applicants.
Scholarship coordinator can manage applicant's submission and select qualified and rejected applicants. Scholarship coordinator can send announcements to applicants via email and system's notification. Scholarship coordinator may also post their activities and featured scholars to be posted in landing page. This system allows scholarship coordinator to view and export annual data records of application.
git clone https://github.com/cur1ousFranz/laravel-scholarshipsystem.git
cd laravel-scholarship-system
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan serve
You can now access the server at http://127.0.0.1:8000
Populate the database with seed data with relationship that includes user, coordinator, list of courses in a particular school, family income brackets as well as dynamic address. This can help you to start creating applicants and scholarship application. In order that applicant can apply, there must be a scholarship application published, otherwise the apply button will be disabled.
php artisan db:seed
Note: It's recommended to have a clean database before seeding. You can refresh your migrations at any point to clean the database by running the following command
php artisan migrate:fresh --seed
- Applicant Registration, Complete Profile (CRUD).
- Read Scholarship available, submit application (CRUD).
- Applicant recieves notification both email and system's notification.
- Coordinator can post blog about activities and featured scholars (CRUD).
- Read applicants and document attachments, mark applicant as qualified or rejected (CRUD).
- Coordinator can read the summary of evaluation based on applicants profile information and rate by percentage.
- Coordinator can send notification to applicants both email and system's notification.
- Coordinator can read data reports every school year and export data as pdf file (CRUD).
- Coordinator has functionality to update family income ranges as well as adding course in particular school (CRUD).