initial commit

This commit is contained in:
edmondlang
2022-09-30 19:23:34 +08:00
parent cee0f49f32
commit 29c7677fd6
3 changed files with 10 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
/vendor
/.idea
Homestead.json
Homestead.yaml
.env
storage/*.key
composer.lock
Executable → Regular
View File
+2 -1
View File
@@ -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']);