Browse Source

add course

visuddhinanda 2 days ago
parent
commit
cec64a9c41
1 changed files with 1 additions and 0 deletions
  1. 1 0
      api-v12/routes/web.php

+ 1 - 0
api-v12/routes/web.php

@@ -75,6 +75,7 @@ Route::prefix('library')->name('library.')->group(function () {
     Route::get('/wiki/{lang}', [WikiController::class, 'index'])->name('wiki.index');
     Route::get('/wiki/{lang}/{word}', [WikiController::class, 'show'])->name('wiki.show');
 
+    Route::get('/course', [DownloadController::class, 'index'])->name('course');
     Route::get('/download', [DownloadController::class, 'index'])->name('download');
     // 文集
     Route::get('/anthology',          [AnthologyController::class, 'index'])->name('anthology.index');