系统设置页

This commit is contained in:
Wisp X
2022-02-13 13:04:07 +08:00
parent cada455745
commit 6305d5b08c
7 changed files with 167 additions and 12 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Response;
use Illuminate\View\View;
class SettingController extends Controller
{
public function index(): View
{
return view('admin.setting.index');
}
public function save(): Response
{
return $this->success('保存成功');
}
}