first commit

This commit is contained in:
2020-08-06 16:42:18 +08:00
commit eb792c34aa
12972 changed files with 1511424 additions and 0 deletions

11
routes/web.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
Route::get('/', 'IndexController@index')->name('index');
Route::get('/test', 'TestController@index')->name('test');
Route::get('/test/grant', 'TestController@grant')->name('test.grant');
Route::get('/test/checkcoupon', 'TestController@checkcoupon')->name('test.checkcoupon');
Route::get('/test/query', 'TestController@query')->name('test.query');
Route::get('/test/destroy', 'TestController@destroy')->name('test.destroy');
Route::get('/skyxu', 'SkyxuController@index')->name('skyxu');
Route::get('/coupon', 'CouponController@index')->name('coupon');