123456789101112131415161718192021222324252627282930313233 |
- <?php
- use Illuminate\Http\Request;
- Route::group(['prefix' => 'api', 'namespace' => 'Api', 'middleware'=>'XSS'], function(){
- Route::group(['namespace' => 'Telegram'], function() {
-
- Route::post('telegram/getdata', 'TelegramController@getdata')->name('api.telegram.getdata');
-
- Route::post('test/getdata', 'TestController@getdata')->name('api.test.getdata');
- });
-
- Route::group(['namespace' => 'ThirdPart'], function() {
-
- Route::get('thirdpart/balance', 'ThirdPartController@balance')->name('api.thirdpart.balance');
-
- Route::post('thirdpart/bishuorder', 'ThirdPartController@bishuorder')->name('api.thirdpart.bishuorder');
-
- Route::post('thirdpart/shanzuorder', 'ThirdPartController@shanzuorder')->name('api.thirdpart.shanzuorder');
- });
- });
|