Aufgabe 1

This commit is contained in:
Robert
2024-01-19 15:13:09 +01:00
parent 5756f2b7d5
commit abeefa2d74
6 changed files with 176 additions and 28 deletions

View File

@@ -19,6 +19,7 @@ use Illuminate\Http\Request;
Route::get('/', [MainController::class, 'index' ]);
Route::get('/bewertung', [MainController::class, 'bewertung' ]);
Route::post("/bewertung_abschicken",[MainController::class, 'bewertung_abschicken' ]);
Route::get("/meinebewertungen",[MainController::class, "meinebewertungen"]);
//Anmeldungs Controller
Route::get('/anmeldung', [AnmeldungController::class, 'start']);