name('index'); Route::get('/category/{category}', [CategoryController::class, 'show'])->name('category.show'); Route::get('/album/{album}', [AlbumController::class, 'show'])->name('album.show'); Route::get('/image/{image}', [ImageController::class, 'show'])->name('image.show');