add all_countries route

This commit is contained in:
root 2026-02-24 17:41:27 +01:00
parent 926a453bb9
commit 58c2a9a47f
1 changed files with 1 additions and 0 deletions

View File

@ -72,6 +72,7 @@ $router->get('/geocode', 'HelperController@getGoogleGeocoding');
$router->group(['prefix' => '/'.config('services.wallet_service.name') ,'middleware' => 'auth:api'], function () use ($router){
// Helper routes
$router->post('update_password', 'WalletServiceController@post');
$router->get('all_countries', 'WalletServiceController@get');
$router->get('countries','WalletServiceController@get');
$router->get('countries/{dial_code}','WalletServiceController@get');
$router->post('paying_networks','WalletServiceController@post');