Working interface and parsed symfony cast data to a database.

This commit is contained in:
Krzysztof Płaczek
2022-08-23 08:09:14 +02:00
parent 119b94470f
commit a92c75c1dd
22 changed files with 488 additions and 224 deletions

View File

@@ -13,6 +13,9 @@ use Illuminate\Support\Facades\Route;
|
*/
Route::get('/', [\App\Http\Controllers\Controller::class, 'index']);
Route::get('/download', [\App\Http\Controllers\Index::class, 'download']);
Route::get('/', [\App\Http\Controllers\Index::class, 'index']);
Route::get('/course/{course}', [\App\Http\Controllers\CourseController::class, 'index'])->name('course.index');
Route::get('/chapter/{chapter}', [\App\Http\Controllers\CourseController::class, 'chapter'])->name('course.chapter');