Here is a small laravel task for you to practice Laravel.
You can read the contribution guidelines from Contribution Guidelines.
A quick tutorial to use Git is available at Using Git.
Make sure you read Writing a good commit before you start.
Task Description You've been provided with a Laravel 5.1 installation. You've to contribute your code to this repo only. These are the tasks that you've to complete :
- User Module
Laravel comes with out of the box User model and corresponding migrations. You've make some changes to that so that a user can register, login into the application. Here are some extra features that you've to include in your User Module :- Ensure that the user who is registering is a human.
- Login using mobile number and email (both).
- Q&A Module
You've to create a prototype Q&A forum which works like Winuall. Use eloquent to implement relations between User, Question and Answers.
Compulsory Views
Registration
Login
Home
(Listing all questions)
Question show
(Dislays individual question and all it's answers)
Answer show
(Dislays individual answer and it's question)
Optional Views (It'll be impressive if you include these)
My Questions
My Answers
My Profile