Api路由表命名

This commit is contained in:
筱锋xiao_lfeng 2023-06-24 20:59:12 +08:00
parent c406baeac5
commit 87753e987d

View File

@ -43,6 +43,6 @@
}); });
Route::prefix('custom')->group(function () { Route::prefix('custom')->group(function () {
Route::post('add',[Link::class,'apiCustomAdd']); Route::post('add',[Link::class,'apiCustomAdd'])->name('api.link.custom.add');
}); });
}); });