From 0e63d3528cb7506ad335027073c8bebab0ba9cb6 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Thu, 30 Jul 2020 17:02:25 +0100 Subject: [PATCH] + Add modification of user identification route --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index 1264275..e5a12aa 100755 --- a/routes/web.php +++ b/routes/web.php @@ -100,6 +100,7 @@ // Idendification routes $router->group(['prefix' => '/identifications'] , function () use ($router){ $router->post('','WalletServiceController@post'); + $router->put('','WalletServiceController@put'); $router->post('{id_identification}','WalletServiceController@postWithFiles'); $router->get('{user_phone}','WalletServiceController@get'); $router->get('verify/{user_phone}','WalletServiceController@get');