Xboard/app/Http/Routes/V1/GuestRoute.php

24 lines
710 B
PHP
Raw Normal View History

2023-11-17 01:44:01 -05:00
<?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');
});
}
}