Skip to content

Commit

Permalink
Removed redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
KaniRobinson committed Jul 6, 2024
1 parent 1a732e9 commit c7448a7
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,3 @@
Route::resource('installation', InstallationController::class)
->middleware('web')
->only(['index', 'store', 'show', 'edit', 'update', 'destroy']);

// // Installation routes
// Route::prefix('installation')->controller(InstallationController::class)->group(function () {
// Route::get('/', 'index')->name('installation.index');
// Route::get('/step/{step}', 'showStep')->name('installation.show-step');

// Route::post('/start-installation', 'storeInstallationKey')->name('installation.start-installation');
// Route::post('/restart-installation', 'restartInstallation')->name('installation.restart');
// Route::post('/previous-step', 'previousStep')->name('installation.previous-step');
// Route::post('/save-step', 'saveStepSettings')->name('installation.save-step');
// Route::post('/complete', 'completeInstallation')->name('installation.complete');
// });

0 comments on commit c7448a7

Please sign in to comment.