From 889be83762528169599da2e3a48cf600267a8059 Mon Sep 17 00:00:00 2001 From: akemidx Date: Wed, 3 May 2023 14:14:18 -0400 Subject: [PATCH] replacing route. sorry! --- routes/web/hardware.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/web/hardware.php b/routes/web/hardware.php index 7bd9c19c6..690d8e0d1 100644 --- a/routes/web/hardware.php +++ b/routes/web/hardware.php @@ -146,6 +146,10 @@ Route::group( [AssetFilesController::class, 'show'] )->name('show/assetfile'); + Route::delete('{assetId}/showfile/{fileId}/delete', + [AssetFilesController::class, 'destroy'] + )->name('delete/assetfile'); + Route::post( 'bulkedit', [BulkAssetsController::class, 'edit']