Awesome
Senior e-Learning Platform Project (SEPP)
This project aims to create an Online Learning for Elderly Platform using Laravel PHP Framework under the User Centered Design class at Instituto Superior Técnico, Universidade de Lisboa - Portugal.
Laravel PHP Framework
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
Laravel is accessible, yet powerful, providing powerful tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
Information
Requirement
- Apache Web Server
- PHP 5.3.2 or above
- MySQL
Installation
How to run the final prototype:
-
composer dumpautoload
-
composer update
-
composer install
-
touch storage/database.sqlite
-
php artisan migrate
-
php artisan serve
(OPTIONAL)
-
Update database configuration based on you MySQL configuration in
database.php
:'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'howframework_laravel', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'prefix' => '', ),
-
Run
php artisan migrate:install
to run migration table installation. -
Run
php artisan migrate
to update you're database to latest migration.
Running the Application
You can access the application from http://localhost/PROJECTNAME/public/, change localhost/
to whatever you set in your environment.
Official Documentation
Documentation for the framework can be found on the Laravel website.