1234567891011 |
- <?php
- use Illuminate\Support\Facades\Route;
- Route::group(['domain' => env('APP_HOST_WEB'), 'prefix' => 'withdraw'],function (){
- Route::match(['get','post'],'config', 'WithdrawController@getWithdrawConfig')->name('withdraw.config');
- Route::match(['get','post'],'withdraw', 'WithdrawController@setWithdraw')->name('withdraw.withdraw');
- Route::match(['get','post'],'list', 'WithdrawController@index')->name('withdraw.list');
- });
|