@extends('layouts.demo10.base') @section('content') @can('view.tenant')
| Id | Organization Name | Domain Progress Link | Industry Type | Time Zone | Created At | {{--Updated At | --}} @canany(['edit.projects', 'delete.projects'])@endcanany |
|---|---|---|---|---|---|---|---|
| {{ $organization->id }} | {{ $organization->name ?? 'N/A' }} |
@php
$tenantHomeMeta = app(\App\Services\TenantDomainService::class)
->tenantHomeMetaForOrganization($organization);
$domainProgressUrl = $tenantHomeMeta['url'];
$themeLabel = $tenantHomeMeta['theme_label'];
@endphp
@if($domainProgressUrl)
{{ $domainProgressUrl }}
@if($themeLabel)
@else
No domain assigned
@endif
{{ $themeLabel }} Theme
@endif
|
{{ $organization->industry_type ?? 'N/A' }} | {{ $organization->timezone ?? 'N/A' }} | {{ optional($organization->created_at)->format('M d, Y') ?? 'N/A' }} |