From d83e013c0c5ed8fe632e4d1d591bf51e85f8dc37 Mon Sep 17 00:00:00 2001 From: XiaoLFeng Date: Sat, 24 Jun 2023 22:51:19 +0800 Subject: [PATCH] =?UTF-8?q?api=E8=B7=AF=E7=94=B1=E8=A1=A8=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=EF=BC=88search=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/api.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/api.php b/routes/api.php index 93b2db2..503f5cb 100644 --- a/routes/api.php +++ b/routes/api.php @@ -44,5 +44,6 @@ }); Route::prefix('custom')->group(function () { Route::post('add',[Link::class,'apiCustomAdd'])->name('api.link.custom.add'); + Route::get('search',[Link::class, 'apiCustomSearch'])->name('api.link.custom.search'); }); });