This commit is contained in:
Malibu
2015-03-10 16:11:17 +01:00
4 changed files with 133 additions and 75 deletions

View File

@ -12,7 +12,13 @@
*/
Route::get('/', 'GameController@index');
Route::get('/', 'HomeController@index');
Route::get('referents/{id}/games', 'GameController@showReferentGames')->where('id', '^((?!login|referent|admin).)*$');
Route::get('referents/{id}/games/{idGame}', 'GameController@showOneReferentGame');
Route::get('searchRef/{reg}', 'GameController@findReferents');