@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | Route::get('/', 'UsersController@index'); |
| 4 | 4 | |
| 5 | -Route::get('/terms', function () { |
|
| 5 | +Route::get('/terms', function() { |
|
| 6 | 6 | return view('users.terms'); |
| 7 | 7 | }); |
| 8 | 8 | |
| 9 | -Route::group(['prefix' => 'users'], function () { |
|
| 9 | +Route::group([ 'prefix' => 'users' ], function() { |
|
| 10 | 10 | |
| 11 | 11 | // Create new user |
| 12 | 12 | Route::post('/', 'UsersController@create'); |