You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
523 B
35 lines
523 B
<?php
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\Admin\CommonController;
|
|
|
|
class IndexController extends CommonController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
return view('admin.index.index');
|
|
}
|
|
|
|
//更新配置
|
|
public function upconfig()
|
|
{
|
|
updateconfig();
|
|
}
|
|
|
|
//更新缓存
|
|
public function upcache()
|
|
{
|
|
|
|
}
|
|
|
|
//页面跳转
|
|
public function jump()
|
|
{
|
|
return view('admin.index.jump');
|
|
}
|
|
}
|