@@ -11,14 +11,14 @@ |
||
| 11 | 11 | | |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -Route::get('/', function () { |
|
| 14 | +Route::get('/', function() { |
|
| 15 | 15 | return view('welcome'); |
| 16 | 16 | }); |
| 17 | 17 | |
| 18 | 18 | Route::resource('task', 'TaskController'); |
| 19 | 19 | Route::resource('tag', 'TagController'); |
| 20 | 20 | |
| 21 | -Route::group(['prefix' => 'api/v1', 'middleware' => 'auth:api'], function () { |
|
| 21 | +Route::group(['prefix' => 'api/v1', 'middleware' => 'auth:api'], function() { |
|
| 22 | 22 | Route::post('/short', 'UrlMapperController@store'); |
| 23 | 23 | }); |
| 24 | 24 | |