From 16e84fa5185e440e2c3cfcbbb9a1488c5e55426e Mon Sep 17 00:00:00 2001 From: huangguancheng Date: Mon, 17 Feb 2025 14:56:38 +0800 Subject: [PATCH] =?UTF-8?q?googleAds=E5=B9=BF=E5=91=8A=E8=B4=A6=E5=8F=B7-?= =?UTF-8?q?=E6=8E=88=E6=9D=83-=E7=BB=91=E5=AE=9A-=E6=BF=80=E6=B4=BB?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=E6=9B=B4=E6=96=B0=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/route.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/config/route.php b/config/route.php index 7f73787..6cab7a7 100644 --- a/config/route.php +++ b/config/route.php @@ -109,15 +109,10 @@ Route::group('/marketing', function () { // }); Route::group('/customer', function () { Route::get('/handle_binding', [CustomerController::class, 'handleBindingNew']); //绑定接口 + Route::post('/bind', [CustomerController::class, 'bind']); //绑定接口 })->middleware([ app\middleware\JwtLocal::class, ]); - Route::group('/customer', function () { - Route::get('/bind', [CustomerController::class, 'bind']); //绑定接口 - })->middleware([ - app\middleware\JwtLocal::class, - ]); - }); });