39 lines
1.3 KiB
PHP
Executable File
39 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Application Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register all of the routes for an application.
|
|
| It is a breeze. Simply tell Lumen the URIs it should respond to
|
|
| and give it the Closure to call when that URI is requested.
|
|
|
|
|
*/
|
|
|
|
//$router->get('/', function () use ($router) {
|
|
// return $router->app->version();
|
|
//});
|
|
|
|
// Transactions routes
|
|
$router->group(['prefix' => '/transactions'] , function () use ($router){
|
|
$router->post('','TransactionController@add');
|
|
$router->get('{id_wallet}','TransactionController@lastTransactions');
|
|
$router->post('commission','TransactionController@calculateCommission');
|
|
});
|
|
|
|
// Credits routes
|
|
$router->group(['prefix' => '/credits'] , function () use ($router){
|
|
$router->put('treatDemand/{id_demand}','CreditController@treatDemand');
|
|
$router->put('cancelDemand/{id_demand}','CreditController@cancelDemand');
|
|
});
|
|
|
|
$router->put('/virement/{id_wallet}','CommissionController@virement');
|
|
|
|
// Wallets routes
|
|
$router->group(['prefix' => '/wallets'] , function () use ($router){
|
|
$router->get('{id_agent}/activated', 'WalletController@activated');
|
|
$router->get('{id_wallet}', 'WalletController@show');
|
|
$router->post('', 'WalletController@create');
|
|
});
|