Refactor to remove slices and environments, replace with instances.

This commit is contained in:
2025-09-15 12:19:13 +01:00
parent a91780d1d5
commit 65d3142d03
24 changed files with 454 additions and 290 deletions

View File

@@ -1,7 +1,6 @@
<?php
use App\Http\Controllers\ApplicationController;
use App\Http\Controllers\EnvironmentController;
use App\Http\Controllers\OrganisationController;
use App\Http\Controllers\ProvisionCallback;
use App\Http\Controllers\ProvisionScript;
@@ -39,12 +38,6 @@ Route::middleware(['auth', 'verified'])->group(function () {
->only('show', 'index')
->name('index', 'applications.index')
->name('show', 'applications.show');
Route::prefix('applications/{application}')->group(function () {
Route::resource('environments', EnvironmentController::class)
->only('show')
->name('show', 'environments.show');
});
});
});