1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-20 19:07:03 +08:00
2020-09-18 16:47:21 +08:00

43 lines
825 B
PHP

<?php
namespace App\Http\Home\Controllers;
use App\Services\Logic\Help\HelpInfo as HelpInfoService;
use App\Services\Logic\Help\HelpList as HelpListService;
/**
* @RoutePrefix("/help")
*/
class HelpController extends Controller
{
/**
* @Get("/index", name="home.help.index")
*/
public function indexAction()
{
$service = new HelpListService();
$items = $service->handle();
$this->seo->prependTitle('帮助');
$this->view->setVar('items', $items);
}
/**
* @Get("/{id:[0-9]+}", name="home.help.show")
*/
public function showAction($id)
{
$service = new HelpInfoService();
$help = $service->handle($id);
$this->seo->prependTitle(['帮助', $help['title']]);
$this->view->setVar('help', $help);
}
}