19 lines
815 B
PHP
19 lines
815 B
PHP
<?php
|
|
|
|
use App\Endpoint\Callback\Http\Controllers\AlipayController;
|
|
use App\Endpoint\Callback\Http\Controllers\Kuaidi100Controller;
|
|
use App\Endpoint\Callback\Http\Controllers\WxpayController;
|
|
use App\Endpoint\Callback\Http\Controllers\YeePayNotifyController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
//快递100物流推送
|
|
Route::post('kuaidi100', [Kuaidi100Controller::class, 'notify']);
|
|
|
|
// 微信支付通知
|
|
Route::post('wxpay/{payment}/paid-notify', [WxpayController::class, 'paidNotify'])->name('wxpay.paid_notify');
|
|
Route::post('wxpay/{payment}/order-refund-notify', [WxpayController::class, 'orderRefundedNotify'])->name('wxpay.order_refund_notify');
|
|
|
|
Route::post('alipay', AlipayController::class)->name('alipay.notify');
|
|
|
|
Route::post('yeepay-notify', YeePayNotifyController::class)->name('yeepay.notify');
|