Info and filtering by course tracks, table of content on chapter view with links and previous and next buttons.

This commit is contained in:
Krzysztof Płaczek
2023-01-23 13:23:57 +01:00
parent d4d8330d83
commit 5902bf7c2b
9 changed files with 1024 additions and 477 deletions

View File

@@ -18,6 +18,7 @@ use Illuminate\Support\Facades\Route;
Route::get('/download', [Index::class, 'download']);
Route::get('/', [Index::class, 'index']);
Route::get('/track/{track}', [Index::class, 'index']);
Route::prefix('course')->name('course.')->group(function () {
Route::get('/{course}', [CourseController::class, 'index'])->name('index');
Route::get('/{course}/sync', [CourseController::class, 'sync'])->name('sync');