mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
20 lines
323 B
PHP
20 lines
323 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
class Dashboard extends Backend
|
|
{
|
|
public function initialize(): void
|
|
{
|
|
parent::initialize();
|
|
}
|
|
|
|
public function index(): void
|
|
{
|
|
$this->success('', [
|
|
'remark' => get_route_remark()
|
|
]);
|
|
}
|
|
} |