From 052ef31798f45dc9f939329fcf836591844a2b27 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Mon, 29 Nov 2021 13:01:38 +0100 Subject: [PATCH] Add endpoint to calculate performances amount --- routes/web.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/web.php b/routes/web.php index a3ab399..7a14635 100755 --- a/routes/web.php +++ b/routes/web.php @@ -229,6 +229,8 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding'); $router->get('acts', 'NanoSanteServiceController@get'); $router->get('health-care-sheets', 'NanoSanteServiceController@get'); + $router->put('health-care-sheets', 'NanoSanteServiceController@put'); + $router->post('health-care-sheets/performances-amount', 'NanoSanteServiceController@post'); $router->post('health-care-sheets/consultation', 'NanoSanteServiceController@post'); $router->post('health-care-sheets/execution', 'NanoSanteServiceController@post');