Stars: 111
Forks: 19
Pull Requests: 19
Issues: 10
Watchers: 6
Last Updated: 2023-02-09 13:59:57
An easy-to-use, free and open source laravel e-Exam platform to build your online course right away.
License: MIT License
Languages: PHP, Dockerfile, Shell, Blade
Get detailed information about your clients, exams and courses to create an effective report and track your progress. You can also use audio lessons, online quizzes, and the tool/teacher appointment system.
If you are using Docker run the following command
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
Or
composer install
Run the following command for the file system and If you are using Docker
./vendor/sail/bin artisan storage link
Or
php artisan storage link
Configure the database connection is going to be using in .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=drivecourseapp
DB_USERNAME=root
DB_PASSWORD=
If you are using Docker and run this:
./vendor/bin/sail artisan migrate --seed
Or
php artisan migrate --seed