+ Fix bug on Credit traitement route

This commit is contained in:
Djery-Tom 2020-10-14 16:44:51 +01:00
parent 234708357d
commit 59a1207dbb
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ $router->group(['prefix' => '/transactions'] , function () use ($router){
// Credits routes
$router->group(['prefix' => '/credits'] , function () use ($router){
$router->put('treatDemand/{id_demand}','CreditfController@treatDemand');
$router->put('cancelDemand/{id_demand}','CreditController@cancelDemand');
$router->put('treatDemand/{id_demand}', 'CreditController@treatDemand');
$router->put('cancelDemand/{id_demand}', 'CreditController@cancelDemand');
});
$router->put('/virement/{id_wallet}','CommissionController@virement');