Laravel.io
+--------+--------------------------------+------+-------------------------------------+----------------+---------------+
| Domain | URI                            | Name | Action                              | Before Filters | After Filters |
+--------+--------------------------------+------+-------------------------------------+----------------+---------------+
|        | GET|HEAD /                     |      | HomeController@showHome             |                |               |
|        | POST /                         |      | HomeController@login                |                |               |
|        | GET|HEAD people                |      | PeopleController@showPeople         | memberCheck    |               |
|        | GET|HEAD people/{user}         |      | PeopleController@showProfile        | memberCheck    |               |
|        | POST people/updateAvailability |      | PeopleController@updateAvailability |                |               |
|        | POST people/updateBiography    |      | PeopleController@updateBiography    |                |               |
|        | POST people/updateSkills       |      | PeopleController@updateSkills       |                |               |
|        | POST people/removeTag          |      | PeopleController@removeTag          |                |               |
|        | POST people/addTag             |      | PeopleController@addTag             |                |               |
|        | POST people/updatePhotos       |      | PeopleController@updatePhotos       |                |               |
|        | POST people/deletePhoto        |      | PeopleController@deletePhoto        |                |               |
|        | POST people/updateLayout       |      | PeopleController@updateLayout       |                |               |
|        | POST people/updatePassword     |      | PeopleController@updatePassword     |                |               |
|        | GET|HEAD bulletin              |      | BulletinController@showBulletin     | memberCheck    |               |
|        | POST bulletin/createPost       |      | BulletinController@createPost       |                |               |
|        | POST bulletin/deletePost       |      | BulletinController@deletePost       |                |               |
|        | POST bulletin/editPost         |      | BulletinController@editPost         |                |               |
|        | POST bulletin/comment          |      | BulletinController@createComment    |                |               |
|        | GET|HEAD current               |      | ProjectController@showCurrent       | memberCheck    |               |
|        | GET|HEAD finished              |      | ProjectController@showFinished      |                |               |
|        | GET|HEAD logout                |      | Closure                             |                |               |
+--------+--------------------------------+------+-------------------------------------+----------------+---------------+

Please note that all pasted data is publicly available.