From 6fb0079e7c73cf4b7c7d447c2ac11ddd75d42ce4 Mon Sep 17 00:00:00 2001 From: F4ilji Date: Thu, 2 Jul 2026 12:50:09 +0500 Subject: [PATCH] feat: add deploy route and sidebar navigation --- app/Containers/Dashboard/UI/WEB/Routes/web.php | 5 +++++ .../js/Pages/Dashboard/Components/quickActionsConfig.js | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/app/Containers/Dashboard/UI/WEB/Routes/web.php b/app/Containers/Dashboard/UI/WEB/Routes/web.php index 1722e8b..f5683bc 100755 --- a/app/Containers/Dashboard/UI/WEB/Routes/web.php +++ b/app/Containers/Dashboard/UI/WEB/Routes/web.php @@ -416,6 +416,11 @@ Route::middleware(['access-check', 'dashboard.auth'])->group(function () { Route::put('/{credential}', [IntegrationCredentialsController::class, 'update'])->name('update'); Route::delete('/{credential}', [IntegrationCredentialsController::class, 'destroy'])->name('destroy'); }); + + // Deploy + Route::get('/dashboard/deploy', function () { + return inertia()->render('Dashboard/Deploy/Index'); + })->name('dashboard.deploy'); }); diff --git a/resources/js/Pages/Dashboard/Components/quickActionsConfig.js b/resources/js/Pages/Dashboard/Components/quickActionsConfig.js index 0fff24a..acc6061 100644 --- a/resources/js/Pages/Dashboard/Components/quickActionsConfig.js +++ b/resources/js/Pages/Dashboard/Components/quickActionsConfig.js @@ -31,4 +31,10 @@ export const quickActions = [ href: null, icon: 'cog', }, + { + label: 'Deploy', + route: 'dashboard.deploy', + href: null, + icon: 'cog', + }, ];