fix: payment

This commit is contained in:
tokumeikoi
2021-04-28 18:29:28 +09:00
parent 3bfa2180e6
commit 0333d62e6f
3 changed files with 9 additions and 7 deletions

View File

@ -21,7 +21,7 @@ class GuestRoute
// Telegram
$router->post('/telegram/webhook', 'Guest\\TelegramController@webhook');
// Payment
$router->match(['get', 'post'], '/payment/{method}', 'Guest\\PaymentController@notify');
$router->match(['get', 'post'], '/payment/{method}/{id}', 'Guest\\PaymentController@notify');
});
}
}