lecturer landing pages added

This commit is contained in:
Benjamin Takats
2023-01-15 14:44:01 +01:00
parent f3c8ebc3c5
commit cee5e7031c
5 changed files with 15 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ Route::middleware([])
Route::get('/event', \App\Http\Livewire\School\EventTable::class)
->name('table.event');
Route::get('/{lecturer}', \App\Http\Livewire\School\LecturerLandingPage::class)
Route::get('/{lecturer:slug}', \App\Http\Livewire\School\LecturerLandingPage::class)
->name('landingPage.lecturer');
});