This commit is contained in:
HolgerHatGarKeineNode
2023-04-25 23:12:39 +02:00
parent 5a4322b035
commit d8dbc57cea
5 changed files with 156 additions and 1 deletions

View File

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