Files
lsky-pro/app/Http/Controllers/Admin/SettingController.php
T
2022-02-13 13:04:07 +08:00

21 lines
374 B
PHP

<?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('保存成功');
}
}