diff --git a/app/Services/NanoSanteService.php b/app/Services/NanoSanteService.php index f14e4c7..d57f195 100755 --- a/app/Services/NanoSanteService.php +++ b/app/Services/NanoSanteService.php @@ -20,8 +20,8 @@ class NanoSanteService public function __construct() { - $this->baseUri = config('services.wallet_service.base_uri'); - $this->key = config('services.wallet_service.key'); + $this->baseUri = config('services.nano_sante_service.base_uri'); + $this->key = config('services.nano_sante_service.key'); } public function post($uri , $data, $headers) diff --git a/routes/web.php b/routes/web.php index 255cd62..54dcf45 100755 --- a/routes/web.php +++ b/routes/web.php @@ -206,4 +206,4 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding'); $router->post('subscribe', 'NanoSanteServiceController@post'); }); -}); + });