Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. ### Project
  2.  
  3. We’d like you to build an administrated user system which allows users to comment on other peoples profiles.
  4.  
  5. Here are the requirements:
  6.  
  7. + A login and registration system - users must be authenticated to do any of the following.
  8. + A page where users can view all the users on the system (including themselves).
  9. + Each listing should only show the user’s name, and when they were last updated.
  10. + Each user must have a profile page that can be navigated to from the listings page.
  11. + This page should show more information about the user, such as their email and biography.
  12. + Users should be able to update their own profile page, but nobody else’s.
  13. + Users can comment on a profile, all comments should be displayed. (Don’t worry about nesting replies)
  14. + User’s can be flagged as admin’s.
  15. + Admin users can delete comments and ban users.
  16.  
  17. Build requirements:
  18.  
  19. + Please build the application in Laravel.
  20. + Please use Laravel’s built in auth system and middleware for the login system.
  21. + Please don’t install any vendor packages to provide any of the required functionality.
  22. + Please use GIT from start to finish as the repository will need to be shared with us on completion.
  23. + Don’t stress about making it look pretty, although you’re welcome to style it / use a CSS framework.
  24.  
  25. Bonus points for:
  26.  
  27. + An attempt at unit testing.
  28. + A readme file to make it easier for me to review the code.
  29. + An attempt at using docker-compose for local development (I can provide you with a Laravel image if requested).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement