*/ class Index extends AdminController { // 初始化函数 public function __construct() { parent::__construct(); /** * TODO... */ } /** * 初始化后台首页 * @return Response */ public function index(): Response { return $this->view(); } }