Update nano health endpoints
This commit is contained in:
parent
16a035cbf2
commit
0bc31acb68
|
@ -228,6 +228,12 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
|
||||||
$router->put('{id}/pay', 'NanoSanteServiceController@put');
|
$router->put('{id}/pay', 'NanoSanteServiceController@put');
|
||||||
$router->get('', 'NanoSanteServiceController@get');
|
$router->get('', 'NanoSanteServiceController@get');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Factures
|
||||||
|
$router->group(['prefix' => '/invoices'], function () use ($router) {
|
||||||
|
$router->get('', 'NanoSanteServiceController@get');
|
||||||
|
$router->put('{id}/pay', 'NanoSanteServiceController@put');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Insurances routes
|
// Insurances routes
|
||||||
|
|
Loading…
Reference in New Issue