update: add payment show

This commit is contained in:
tokumeikoi
2022-03-18 02:49:51 +08:00
parent 6a2125794b
commit 791ba463c3
3 changed files with 27 additions and 16 deletions

View File

@ -111,6 +111,7 @@ class AdminRoute
$router->post('/payment/getPaymentForm', 'Admin\\PaymentController@getPaymentForm');
$router->post('/payment/save', 'Admin\\PaymentController@save');
$router->post('/payment/drop', 'Admin\\PaymentController@drop');
$router->post('/payment/show', 'Admin\\PaymentController@show');
// System
$router->get ('/system/getStatus', 'Admin\\SystemController@getStatus');
});