Files
sentadmin/backend/app/Http/Controllers/System/Setting.php
2023-02-23 22:34:00 +08:00

25 lines
724 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace App\Http\Controllers\System;
use App\Http\Controllers\Base;
class Setting extends Base{
/**
* @title 设置配置表单
*
* @return void
*/
public function index(){
return $this->data;
}
}