mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-24 06:54:02 +00:00
12 lines
549 B
PHP
12 lines
549 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'wallets', 'namespace' => 'Wallets', 'as' => 'wallet.'], function () {
|
|
Route::get('/', 'ListWalletController@list')->name('list');
|
|
Route::post('/create', 'CreateWalletController@create')->name('create');
|
|
Route::post('/topup', 'TopUpWalletController@topUp')->name('topup');
|
|
Route::post('/withdraw', 'WithdrawWalletController@withdraw')->name('withdraw');
|
|
Route::post('/update-status', 'UpdateStatusWalletController@updateStatus')->name('update.status');
|
|
});
|