- Application to manage and take the quiz online.
- Admin can create test, manage tests and students.
- Students can apply for the test and view results and answer sheets.
Check the following demo project.
Admin login
email: admin@gmail.com
password : password
-
Clone or download this Repository.
-
Run the command
composer install
if you get any problems while running above command then run the following command.
composer install --ignore-platform-reqs
-
Create
.env
file by copying the.env.example
, or run the following commandcp .env.example .env
-
Update the database name and credentials in
.env
fileDB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE="Your database name" DB_USERNAME="your database username" DB_PASSWORD="your database password"
-
Run the following command
php artisan migrate --seed
-
Run npm command
npm install
-
Run the command to compile the theme
npm run dev
-
Finally run the application
php artisan serve
I used the following github repo to create the theme.
This project is open for contributions so Pull requests and Issues are welcome.