DEV Community

Mehedi Hasan Sagor
Mehedi Hasan Sagor

Posted on

Laravel quiz management system with source code

Quiz management system

Welcome to the Laravel Quiz management system ! This repository contains the source code for a Quiz management system web application. here three types of account students, teachers and admin.

Demo
https://youtu.be/nvUSTqsDpUw

Prerequisites
Before running the project, ensure that you have the following prerequisites installed on your machine:

PHP (version 7.4 or higher)
Composer (https://getcomposer.org)
Getting Started
To get started with the project, follow these steps:

Clone the repository to your local machine:

git clone https://github.com/sagor110090/quiz-management-system.git
Navigate to the project directory:

cd quiz-management-system
Install the PHP dependencies using Composer:

composer install
Copy the .env.example file and rename it to .env:

cp .env.example .env
Generate an application key:

php artisan key:generate
Configure the database settings in the .env file.

Run the database migrations:

php artisan migrate --seed
Start the development server:

php artisan serve
Open your browser and visit http://localhost:8000 to see the application.

Contributing
If you would like to contribute to the project, please follow these guidelines:

Fork the repository and create a new branch.
Make your changes and commit them to your branch.
Push your branch to your forked repository.
Create a pull request to the main repository.
License
This project is licensed under the MIT License.

Feel free to copy and paste this markdown code into your README.md file.

read more

Top comments (0)