@php $price_details = [ [ 'label' => 'Free updates', 'value' => 'Lifetime', ], [ 'label' => 'Support', 'value' => '6 months', ], [ 'label' => 'License', 'value' => 'Extended', ], [ 'label' => 'Installation', 'value' => 'One Click', ], ]; @endphp @extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Themes and skins')) @section('titlebar_pretitle') {{ __('Back to themes') }} @endsection @section('titlebar_actions', '') @section('content')

{{ $item['name'] }}

@if ($item['installed'])

{{ __('Installed') }}

@endif
{{-- blade-formatter-disable --}} {{-- blade-formatter-enable --}}

{{ __('Tested with MagicAI') }}

{{ number_format($item['review'], 1) }}

{{-- blade-formatter-disable --}} {{-- blade-formatter-enable --}}

{{ __('Recently Updated') }}

{{ __('About this theme') }}

{!! $item['detail'] !!}
@foreach ($item['categories'] as $tag)

{{ $tag }}

@endforeach
@if (!empty($item['questions']))

{{ __('Have a question?') }}

@foreach ($item['questions'] as $itemQA)
$loop->index != 0, 'lqd-is-active' => $loop->index == 0, ]) :class="{ 'hidden': activeIndex != {{ $loop->index }} }" >

{{ $itemQA['answer'] }}

@endforeach
@endif

{{ __('Limited Offer') }}

@if ($item['price'] != 0)

@if (currencyShouldDisplayOnRight(currency()['symbol'])) {{ $item['price'] }} $ @if ($item['fake_price'] ?? false) {{ $item['fake_price'] }}$ @endif @else ${{ $item['price'] }} @if ($item['fake_price'] ?? false) ${{ $item['fake_price'] }} @endif @endif

{{ __('For a limited time only') }}

@else

{{ __('Free') }}

@endif

{{ __('Price is in US dollars. Tax included.') }}

@if ($item['price'] != 0) @if ($app_is_demo) {{ __('Buy Now') }} @else @php $is_license = (bool) $item['licensed']; @endphp {{ __('Buy Now') }} @endif @else @php if ($item['slug'] == 'default') { $is_active = setting('front_theme') == 'default' && setting('dash_theme') == 'default'; } else { $is_active = setting('front_theme') == $item['slug'] || setting('dash_theme') == $item['slug']; } $link = $item['price'] > 0 ? route('dashboard.admin.themes.buyTheme', ['slug' => $item['slug']]) : route('dashboard.admin.themes.activate', ['slug' => $item['slug']]); @endphp {{ $is_active ? 'Activated' : 'Activate' }} @endif

{{ __('Details') }}

@foreach ($price_details as $detail)

{{ __($detail['label']) }}

{{ __($detail['value']) }}

@endforeach
@endsection @push('script') @includeWhen(\App\Helpers\Classes\Helper::showIntercomForBuyer(),'default.panel.layout.includes.buyer-intercom') @endpush