|
@@ -60,6 +60,7 @@ Route::middleware(['admin.jwt'])->group(function () {
|
|
|
Route::prefix("/paymentOrder")->group(function () {
|
|
Route::prefix("/paymentOrder")->group(function () {
|
|
|
Route::get('/', [PaymentOrder::class, 'index']);
|
|
Route::get('/', [PaymentOrder::class, 'index']);
|
|
|
Route::get('/check', [PaymentOrder::class, 'check']);
|
|
Route::get('/check', [PaymentOrder::class, 'check']);
|
|
|
|
|
+ Route::post('/audit', [PaymentOrder::class, 'audit']);
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|
|
|