123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php namespace App\Http\Controllers\Admin;
- use Illuminate\Support\Facades\Cache;
- /**
- * 后台控制器
- *
- * @author 刘相欣
- *
- * */
- class Index extends Auth{
-
-
- public function index()
- {
-
- // 获取菜单
- $this->getMenu('admin');
- // 请求结果
- return $this->fetch();
- }
- /**
- * 欢迎页
- *
- * */
- public function welcome()
- {
-
- // 加载模板
- return $this->fetch();
- }
- /**
- * 清理缓存
- *
- * */
- public function refresh()
- {
-
- // 清除缓存
- Cache::flush();
- // 加载模板
- return json_send(['code'=>'success','msg'=>'刷新成功']);
- }
- }
|