From 95b5cabc00ae118b327a5b874c99a878406d8f37 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Mon, 25 Oct 2021 07:36:12 +0100 Subject: [PATCH] Add upload image endpoint --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index bf00d0a..d4e27e2 100755 --- a/routes/web.php +++ b/routes/web.php @@ -204,6 +204,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding'); $router->get('countries/{countryId}', 'NanoSanteServiceController@get'); $router->post('bonus-amount', 'NanoSanteServiceController@post'); $router->post('subscribe', 'NanoSanteServiceController@post'); + $router->post('upload-images', 'NanoSanteServiceController@postWithFiles'); }); });