42 lines
1.8 KiB
PHP
42 lines
1.8 KiB
PHP
<x-filament::page>
|
|
<x-filament::section>
|
|
<div class="flex flex-col gap-4">
|
|
@if (! $this->tenant)
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
No managed tenant is currently selected.
|
|
</div>
|
|
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
Use the managed tenants list to open one.
|
|
</div>
|
|
@else
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
Current managed tenant selection.
|
|
</div>
|
|
|
|
<dl class="grid grid-cols-1 gap-4 sm:grid-cols-2">
|
|
<div>
|
|
<dt class="text-xs font-medium text-gray-500 dark:text-gray-400">Name</dt>
|
|
<dd class="text-sm text-gray-900 dark:text-gray-100">{{ $this->tenant->name }}</dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt class="text-xs font-medium text-gray-500 dark:text-gray-400">Tenant ID</dt>
|
|
<dd class="text-sm text-gray-900 dark:text-gray-100">{{ $this->tenant->tenant_id }}</dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt class="text-xs font-medium text-gray-500 dark:text-gray-400">Environment</dt>
|
|
<dd class="text-sm text-gray-900 dark:text-gray-100">{{ strtoupper((string) $this->tenant->environment) }}</dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt class="text-xs font-medium text-gray-500 dark:text-gray-400">Status</dt>
|
|
<dd class="text-sm text-gray-900 dark:text-gray-100">{{ $this->tenant->status }}</dd>
|
|
</div>
|
|
</dl>
|
|
@endif
|
|
</div>
|
|
</x-filament::section>
|
|
</x-filament::page>
|