32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<x-filament::page>
|
|
<x-filament::section>
|
|
<div class="flex flex-col gap-4">
|
|
<div class="text-sm text-gray-600 dark:text-gray-300">
|
|
Managed tenant details.
|
|
</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>
|
|
</div>
|
|
</x-filament::section>
|
|
</x-filament::page>
|