Browse Source

客服消息路由

liuzejian 1 năm trước cách đây
mục cha
commit
cbd90a9b9d
1 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 5 2
      modules/WechatPlatform/routes/route.php

+ 5 - 2
modules/WechatPlatform/routes/route.php

@@ -1,7 +1,10 @@
 <?php
 
 use Illuminate\Support\Facades\Route;
+use Modules\WechatPlatform\Http\KFMessageController;
 
-Route::prefix('wechat')->group(function(){
-
+Route::prefix('wechatPlatform')->group(function(){
+    Route::prefix('kfMessage')->group(function(){
+        Route::get('list', [KFMessageController::class, 'list']);
+    });
 });