mirror of
https://gitlab.com/izyim/prototypes/lumen-microservices/microservice-api-gateway.git
synced 2026-08-19 04:24:15 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
/vendor
|
||||
/.idea
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
.env
|
||||
|
||||
storage/*.key
|
||||
composer.lock
|
||||
+2
-1
@@ -13,7 +13,8 @@ declare(strict_types = 1);
|
||||
|
|
||||
*/
|
||||
|
||||
$router->group(['prefix' => 'api', 'middleware' => ['client.credentials']], function () use ($router) {
|
||||
// $router->group(['prefix' => 'api', 'middleware' => ['client.credentials']], function () use ($router) {
|
||||
$router->group(['prefix' => 'api'], function () use ($router) {
|
||||
|
||||
$router->group(['prefix' => 'product'], function () use ($router) {
|
||||
$router->get('/', ['uses' => 'ProductController@index']);
|
||||
|
||||
Reference in New Issue
Block a user