@if ($theme != null)
@lang('common.version'): {{ $theme->version ?? '-' }}
@if (!empty($theme->last_updated_time))
@lang('common.lastUpdated'):
{{ \Carbon\Carbon::parse($theme->last_updated_time)->diffForHumans() }}
@endif
@if (!empty($theme->rating))
@lang('common.rating'):
@if (!empty($theme->num_ratings))
({{ format_number($theme->num_ratings) }})
@endif
@endif
@lang('common.description'):
{!! $theme->description !!}
@lang('common.license'): {{ $theme->license }}
@lang('common.licenseUri'): {{ $theme->license_uri }}
@if (!empty($theme->downloaded))
@lang('common.downloaded'):
{{ format_number($theme->downloaded) }}
@endif
@if (is_array($theme->tags) && count($theme->tags) > 0)
@lang('admin.tags'):
@foreach ($theme->tags as $tag)
{{ Str::of($tag)->trim()->title() }}
@endforeach
@endif
@lang('tools.notFoundOrUsingCustomTheme', ['host' => $results['hostname']])