user.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. //Route::get('/', 'UserController@index')->name('home'); // 用户首页
  3. Route::get('/userinfo', 'UserController@index')->name('userinfo'); // 用户首页
  4. Route::get('article/{article}', 'UserController@article')->name('article'); // 文章详情
  5. Route::post('exchangeSubscribe', 'UserController@exchangeSubscribe')->name('changeSub'); // 更换节点订阅地址
  6. Route::match(['get', 'post'], 'nodeList', 'UserController@nodeList')->name('node'); // 节点列表
  7. Route::post('checkIn', 'UserController@checkIn')->name('checkIn'); // 签到
  8. Route::get('services', 'UserController@services')->name('shop'); // 商品列表
  9. Route::get('services1', 'UserController@services1')->name('shop1'); // 商品列表
  10. Route::get('tickets', 'UserController@ticketop')->name('ticket'); // 工单
  11. Route::get('tickets1', 'UserController@ticketList')->name('ticket1'); // 工单
  12. Route::post('createTicket', 'UserController@createTicket')->name('openTicket'); // 快速添加工单
  13. Route::match(['get', 'post'], 'replyTicket', 'UserController@replyTicket')->name('replyTicket'); // 回复工单
  14. Route::match(['get', 'post'], 'replyTicket/{id}', 'UserController@replyTicket')->name('replyTicket2'); // 回复工单
  15. Route::post('closeTicket', 'UserController@closeTicket')->name('closeTicket'); // 关闭工单
  16. Route::get('invoices', 'UserController@invoices')->name('invoice'); // 订单列表
  17. Route::post('closePlan', 'UserController@closePlan')->name('cancelPlan'); // 激活预支付套餐
  18. Route::get('invoice/{sn}', 'UserController@invoiceDetail')->name('invoiceInfo'); // 订单明细
  19. Route::post('resetUserTraffic', 'UserController@resetUserTraffic')->name('resetTraffic'); // 重置用户流量
  20. Route::get('buy/{good}', 'UserController@buy')->name('buy'); // 购买商品
  21. Route::post('redeemCoupon', 'UserController@redeemCoupon')->name('redeemCoupon'); // 使用优惠券
  22. Route::get('invite', 'UserController@invite')->name('invite'); // 邀请码
  23. Route::post('makeInvite', 'UserController@makeInvite')->name('createInvite'); // 生成邀请码
  24. Route::match(['get', 'post'], 'profile', 'UserController@profile')->name('profile'); // 修改个人信息
  25. Route::post('switchToAdmin', 'UserController@switchToAdmin')->name('switch'); // 转换成管理员的身份
  26. Route::post('charge', 'UserController@charge')->name('recharge'); // 卡券余额充值
  27. Route::get('help', 'UserController@help')->name('help'); // 帮助中心
  28. Route::namespace('User')->group(function () {
  29. Route::get('referral', 'AffiliateController@referral')->name('commission'); // 推广返利
  30. Route::post('extractMoney', 'AffiliateController@extractMoney')->name('applyCommission'); // 申请提现
  31. Route::post('extractBalance', 'AffiliateController@extractBalance')->name('applyBalance'); // 申请余额
  32. });
  33. Route::prefix('payment')->group(function () {
  34. Route::post('purchase', 'PaymentController@purchase')->name('purchase'); // 创建支付
  35. Route::get('getStatus', 'PaymentController@getStatus')->name('orderStatus'); // 获取支付单状态
  36. Route::put('{order}/close', 'PaymentController@close')->name('closeOrder'); // 关闭支付单
  37. Route::get('{trade_no}', 'PaymentController@detail')->name('orderDetail'); // 支付单详情
  38. });
  39. Route::get('/stripe-checkout/{session_id}', 'Gateway\Stripe@redirectPage')->name('stripe-checkout'); // Stripe Checkout page