add helper kaninchenbau

This commit is contained in:
HolgerHatGarKeineNode
2023-05-15 16:58:27 +02:00
parent e1896d4fc8
commit 3e50a49680
6 changed files with 30 additions and 2 deletions

View File

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