{{ t('tenant_details') }} - {{ $tenant->company_name }}
{{ substr($tenant->company_name, 0, 1) }}

{{ $tenant->company_name }}

{{ config('app.url') . '/' . $tenant->subdomain }}
@switch($tenant->status) @case('active') {{ t('active') }} @break @case('deactive') {{ t('deactive') }} @break @case('suspended') {{ t('suspended') }} @break @default {{ ucfirst($tenant->status) }} @endswitch
@if (checkPermission('admin.tenants.edit')) {{ t('edit') }} @endif @if (checkPermission('admin.tenants.edit')) @if ($tenant->status === 'active') {{ t('deactivate') }} @else {{ t('activate') }} @endif @endif
{{ $users->total() }}
{{ t('total_users') }}
{{ $subscriptionSummary['total_tickets'] }}
{{ t('total_tickets') }}

{{ t('tenant_information') }}

{{ t('company_name') }}
{{ $tenant->company_name ?: 'N/A' }}
{{ t('subdomain') }}
{{ $tenant->subdomain }}
{{ t('address') }}
{{ $tenant->address ?: 'N/A' }}
{{ t('country') }}
{{ get_country_name($tenant->country_id) }}
{{ t('phone') }}
{{ $tenant->adminUser?->phone ?: 'N/A' }}
{{ t('status') }}
@switch($tenant->status) @case('active') {{ t('active') }} @break @case('deactive') {{ t('deactive') }} @break @case('suspended') {{ t('suspended') }} @break @default {{ ucfirst($tenant->status) }} @endswitch
{{ t('created_at') }}
{{ format_date_time($tenant->created_at) }}
{{ t('timezone') }}
{{ $tenant->timezone ?: config('app.timezone') }}
{{ t('email') }}
{{ $tenant->adminUser?->email ?: 'N/A' }}
@if ($tenant->expires_at)
{{ t('expires_at') }}
{{ format_date_time($tenant->expires_at) }} @if ($tenant->isExpired()) ({{ t('expired') }}) @endif
@endif
{{ do_action('tenant.billing_information', $tenant) }}
{{ t('change_tenant_status') }} @if ($newStatus === 'active')

{{ t('confirm_activate_tenant') }}

{{ t('activate_tenant_description') }}
@elseif($newStatus === 'deactive')

{{ t('confirm_deactivate_tenant') }}

{{ t('deactivate_tenant_description') }}
@elseif($newStatus === 'suspended')

{{ t('confirm_suspend_tenant') }}

{{ t('warning') }}: {{ t('suspend_tenant_description') }}
@endif
{{ t('cancel') }}