Skip to content

Latest commit

 

History

History
101 lines (64 loc) · 2.43 KB

README.md

File metadata and controls

101 lines (64 loc) · 2.43 KB

Admission of students

Welcome to our groundbreaking Student Admission Web Application, a dynamic platform meticulously engineered to modernize and optimize the enrollment journey for educational institutions. With a harmonious fusion of cutting-edge features, our solution empowers institutions to effortlessly navigate every stage of the enrollment process, from the initial registration phase to the culminating enrollment payment step.

Features

  • Efficient Registration : Simplified steps guide applicants seamlessly.
  • Digital Document Submission : Securely upload all required documents.
  • Virtual Interviews : Conduct interviews remotely, enhancing accessibility.
  • Convenient Payment : Streamline enrollment payments with multiple options.

Screenshoots

ppdb-img-1 ppdb-img-2 ppdb-img-3 ppdb-img-4

Tech Stack

Framework: Laravel, Tailwindcss

Database: MySQL or sqlite

Run Locally

Download .zip file and extract to your folder

OR

Clone the project

  cd your-folder
  git clone https://github.com/fauzanlm/laravel-admission-of-students.git

Go to the project directory

  cd laravel-admission-of-students

Install Packages

  composer install

Copy .env.example to .env

  cp .env.example .env

Generate AppKey

  php artisan key:generate

Create a new database your-database-name Open .env on your code editor and set the .env database config

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your-database-name
DB_USERNAME=root
DB_PASSWORD=

Migrate project to generate table

  php artisan migrate

After creating a table, we'll seeding database, run seed command

  php artisan db:seed

Run project

  php artisan serve

open your project locally : http://localhost/8000 (port and host adjust)

Authors