From 08df3a99ecb24de2eb48e61bd07eeb40f5ab7d74 Mon Sep 17 00:00:00 2001 From: _KroZen_ <109613115+KroZen-Dev@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:24:00 +0300 Subject: [PATCH 1/5] Added a method to the web route --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index 6b9f97f06..9b2b1d70d 100644 --- a/routes/web.php +++ b/routes/web.php @@ -65,6 +65,7 @@ Route::get('notifications/readAll', [NotificationController::class, 'readAll'])->name('notifications.readAll'); Route::resource('notifications', NotificationController::class); Route::patch('/servers/cancel/{server}', [ServerController::class, 'cancel'])->name('servers.cancel'); + Route::patch('/servers/{server}/uncancel', [App\Http\Controllers\ServerController::class, 'uncancel'])->name('servers.uncancel'); Route::post('/servers/validateDeploymentVariables', [ServerController::class, 'validateDeploymentVariables'])->name('servers.validateDeploymentVariables'); Route::patch('/servers/{server}/billing_priority', [ServerController::class, 'updateBillingPriority'])->name('servers.updateBillingPriority'); Route::delete('/servers/{server}', [ServerController::class, 'destroy'])->name('servers.destroy'); From b618398ff0800e0c489af8e6d82f3dc24c9d51f8 Mon Sep 17 00:00:00 2001 From: _KroZen_ <109613115+KroZen-Dev@users.noreply.github.com> Date: Tue, 16 Jun 2026 17:27:58 +0300 Subject: [PATCH 2/5] Update index.blade.php --- themes/default/views/servers/index.blade.php | 55 ++++++++++++++++---- 1 file changed, 46 insertions(+), 9 deletions(-) diff --git a/themes/default/views/servers/index.blade.php b/themes/default/views/servers/index.blade.php index 9f388bc62..f96c72129 100644 --- a/themes/default/views/servers/index.blade.php +++ b/themes/default/views/servers/index.blade.php @@ -221,7 +221,6 @@ class="float-right mr-2 text-center btn btn-danger"