feat: 實作系統操作手冊模組 (Markdown 渲染與導覽)
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Has been skipped
Koori-ERP-Deploy-System / deploy-production (push) Successful in 54s

This commit is contained in:
2026-02-13 15:51:51 +08:00
parent 8ef82d49cb
commit e6cf03b991
11 changed files with 1830 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Modules\System\Controllers\ManualController;
Route::middleware(['auth'])->group(function () {
// 系統管理 - 操作手冊
Route::get('/system/manual/{slug?}', [ManualController::class, 'index'])->name('system.manual.index');
});