## Summary - consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources - rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language - align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture ## Validation - not rerun as part of this commit/push/PR request ## Notes - branch is 1 commit ahead of `platform-dev` - main commit: `refactor: consolidate internal tenant model naming` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #355
19 lines
817 B
PHP
19 lines
817 B
PHP
@php
|
|
/** @var ?\App\Models\ManagedEnvironment $tenant */
|
|
/** @var ?\App\Support\Tenants\TenantLifecyclePresentation $presentation */
|
|
@endphp
|
|
|
|
<div>
|
|
@if ($tenant?->trashed())
|
|
<div class="rounded-lg border border-amber-200 bg-amber-50 p-4 text-amber-900 dark:border-amber-800/50 dark:bg-amber-950/30 dark:text-amber-100">
|
|
<div class="flex flex-col gap-2">
|
|
<div class="text-sm font-semibold">ManagedEnvironment {{ strtolower($presentation?->label ?? 'Archived') }}</div>
|
|
<div class="text-sm">{{ \App\Support\Rbac\UiTooltips::TENANT_ARCHIVED }}</div>
|
|
<div class="text-sm text-amber-800 dark:text-amber-200">
|
|
{{ $presentation?->longDescription }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
</div>
|