feat: add deploy route and sidebar navigation

This commit is contained in:
F4ilji
2026-07-02 12:50:09 +05:00
parent 13d7d36088
commit 6fb0079e7c
2 changed files with 11 additions and 0 deletions
@@ -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');
});