Explorar el Código

Switch Postman laravel route

shalvah hace 4 años
padre
commit
042cdf4b78
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      routes/laravel.php

+ 1 - 1
routes/laravel.php

@@ -9,6 +9,6 @@ Route::namespace('\Knuckles\Scribe\Http')
     ->middleware($middleware)
     ->group(function () use ($prefix) {
         Route::get($prefix, 'Controller@webpage')->name('scribe');
-        Route::get("$prefix.json", 'Controller@postman')->name('scribe.postman');
+        Route::get("$prefix.postman", 'Controller@postman')->name('scribe.postman');
         Route::get("$prefix.openapi", 'Controller@openapi')->name('scribe.openapi');
     });