From 260e2f6f12aaff7d4dcf3a3676019ec7eb3db5e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=86=E3=82=AF=E3=83=8B=E3=82=AB=E3=83=AB=E8=AB=8F?= =?UTF-8?q?=E8=A8=AA=E5=AD=90?= Date: Mon, 31 Jan 2022 16:47:33 +0900 Subject: [PATCH] =?UTF-8?q?=E4=BD=95=E3=81=A7check=E3=81=AE=E3=83=AB?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=8C=E6=B6=88=E3=81=88=E3=81=A1=E3=82=83?= =?UTF-8?q?=E3=81=A3=E3=81=9F=EF=BC=81=EF=BC=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/routes/api.php | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/routes/api.php b/backend/routes/api.php index f0289fcb..17d6235b 100644 --- a/backend/routes/api.php +++ b/backend/routes/api.php @@ -168,6 +168,7 @@ Route::group(['prefix' => 'children'], function () { Route::group(['prefix' => 'father'], function () { Route::group(['prefix' => 'relations'], function () { Route::get('/checkNull', '\App\Http\Controllers\Api\FatherRelationsController@checkNull')->name('chknull_child'); + Route::get('/check', '\App\Http\Controllers\Api\FatherRelationsController@check')->name('chk_child'); }); });