v2board/app/Http/Routes/V1/GuestRoute.php
2023-06-12 02:32:49 +08:00

24 lines
710 B
PHP

<?php
namespace App\Http\Routes\V1;
use Illuminate\Contracts\Routing\Registrar;
class GuestRoute
{
public function map(Registrar $router)
{
$router->group([
'prefix' => 'guest'
], function ($router) {
// Plan
$router->get ('/plan/fetch', 'V1\\Guest\\PlanController@fetch');
// Telegram
$router->post('/telegram/webhook', 'V1\\Guest\\TelegramController@webhook');
// Payment
$router->match(['get', 'post'], '/payment/notify/{method}/{uuid}', 'V1\\Guest\\PaymentController@notify');
// Comm
$router->get ('/comm/config', 'V1\\Guest\\CommController@config');
});
}
}