Completed
Push — master ( 76618f...4d31b0 )
by Roger
07:55
created
app/Http/routes.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 |
12 12
 */
13 13
 
14
-Route::get('/', function () {
14
+Route::get('/', function() {
15 15
     return view('welcome');
16 16
 });
17 17
 
@@ -21,12 +21,12 @@  discard block
 block discarded – undo
21 21
 //
22 22
 //Auth::guard('api')->user();
23 23
 
24
-Route::get('/auth/login', function(){
24
+Route::get('/auth/login', function() {
25 25
     return("No tens Accés a l'API");
26 26
 });
27 27
 
28
-Route::group(['prefix' => 'api', 'middleware' => 'throttle:6,10'], function () {
29
-    Route::get('people', function () {
28
+Route::group(['prefix' => 'api', 'middleware' => 'throttle:6,10'], function() {
29
+    Route::get('people', function() {
30 30
         return Person::all();
31 31
     });
32 32
 });
33 33
\ No newline at end of file
Please login to merge, or discard this patch.