Setting up + routing the page

This commit is contained in:
p.sterz
2023-07-21 12:39:11 +02:00
parent dc5560aa75
commit 61050ada15
5 changed files with 46 additions and 1 deletions

View File

@@ -20,6 +20,10 @@ Route::middleware([])
->get('/kaninchenbau', \App\Http\Livewire\Helper\FollowTheRabbit::class)
->name('kaninchenbau');
Route::middleware([])
->get('/buecherverleih', \App\Http\Livewire\BooksForPlebs\BookRentalGuide::class)
->name('buecherverleih');
Route::get('/img/{path}', \App\Http\Controllers\ImageController::class)
->where('path', '.*')
->name('img');