mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 23:28:43 +00:00
16 lines
260 B
PHP
16 lines
260 B
PHP
<?php
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Backend;
|
|
use think\facade\Db;
|
|
|
|
class Dashboard extends Backend
|
|
{
|
|
public function dashboard()
|
|
{
|
|
$this->success('', [
|
|
'remark' => get_route_remark()
|
|
]);
|
|
}
|
|
} |