Laravel Learning Management System (LMS)
LMS-Laravel is a Learning Management System (or LMS) that facilitates the creation of educational content by allowing you to manage courses and learning modules. The platform is simple and intuitive and provides features for: 1. The Teacher (course creator) 2. The Student (or user) 3. The Admin
As the name suggests, LMS-laravel is built on the latest Laravel framework, and uses various open source packages. This application is still in development, if you want to collaborate on the development, send us an email:
Angel: [email protected]
git clone https://github.com/LMS-Laravel/LMS-Laravel.git LMS-Laravel
cd LMS-Laravel
composer install(install composer beforehand)
cp .env.example .env
.envfile, with:
Database settings
DB_DATABASE=lms_laravel DB_USERNAME=root DB_PASSWORD=rootGoogle recaptcha settings (which you can configure from https://www.google.com/recaptcha/admin/site)
ENABLE_CAPTCHA=true NOCAPTCHA_SITEKEY=xxxxxxxxxx NOCAPTCHA_SECRET=xxxxxxxxxxx
Email settings (using a provider like Mailgun, Amazon SES, etc)
php artisan key:generate
php artisan migrate
php artisan passport:install
npm install
Run
php artisan db:seed
Start the Laravel server
php artisan serve --port=8000
Start the Websocket server (for chat functionality)
php artisan websockets:serve
LMS-Laravel is licensed under the MIT license. Enjoy!