feat: 實作後台導航選單系統與狀態持久化

- 新增 14 個模組的路由與控制器佔位符
- 實作可展開式側邊欄選單 (Sidebar Menu)
- 優化選單樣式與主題適配
- 實作選單展開狀態持久化 (LocalStorage)
- 修復子選單縮排與顏色問題
This commit is contained in:
2025-12-16 23:21:11 +08:00
parent 6edece8648
commit aa708e9ac7
16 changed files with 1088 additions and 61 deletions

View File

@@ -41,4 +41,49 @@ class AppConfigController extends Controller
return redirect()->back()->with('success', '設定已更新');
}
// UI元素設定
public function uiElements()
{
return view('admin.placeholder', [
'title' => 'UI元素設定',
'description' => 'APP版面配置設定',
]);
}
// 小幫手設定
public function helper()
{
return view('admin.placeholder', [
'title' => '小幫手設定',
'description' => 'APP內建輔助功能設定',
]);
}
// 問卷設定
public function questionnaire()
{
return view('admin.placeholder', [
'title' => '問卷設定',
'description' => '互動問卷建立與管理',
]);
}
// 互動遊戲設定
public function games()
{
return view('admin.placeholder', [
'title' => '互動遊戲設定',
'description' => 'APP互動遊戲配置',
]);
}
// 計時器
public function timer()
{
return view('admin.placeholder', [
'title' => '計時器',
'description' => '時間相關功能設定',
]);
}
}