You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
463 B

  1. <?php
  2. namespace App\Http\Controllers\Weixin;
  3. use App\Http\Controllers\Weixin\CommonController;
  4. use Illuminate\Http\Request;
  5. class WxPayController extends CommonController
  6. {
  7. public function __construct()
  8. {
  9. parent::__construct();
  10. }
  11. //微信支付回调
  12. public function wxpayNotify(Request $request)
  13. {
  14. require_once(resource_path('org/wxpay/WxPayPubHelper.class.php'));
  15. return view('weixin.cart.index', $data);
  16. }
  17. }