@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', __('Marketplace')) @section('titlebar_actions')
{{ __('Manage Addons') }} {{ __('Browse Add-ons') }}
@endsection @section('content')

{{ $extension->name }}

@if ($extension->installed)

{{ __('Installed') }}

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

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

{{ number_format($extension->review, 1) }}

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

{{ __('Recently Updated') }}

{{ __('About this add-on') }}

{!! $extension->detail !!}
@php $tags = explode(',', $extension->category); @endphp @foreach ($tags as $tag)

{{ $tag }}

@endforeach
@if (!empty($extensionQAs))

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

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

{{ $extensionQA['answer'] }}

@endforeach
@endif

{{ __('Limited Offer') }}

@if ($extension->price != 0)

@if (currencyShouldDisplayOnRight(currency()->symbol)) {{ $extension->price }} $ @if ($extension->fake_price) {{ $extension->fake_price }}$ @endif @else ${{ $extension->price }} @if ($extension->fake_price) ${{ $extension->fake_price }} @endif @endif

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

@else

{{ __('Free') }}

@endif

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

@if ($extension->price != 0) @if ($app_is_demo) {{ __('Buy Now') }} @else @php $is_license = $extension->licensed == 1; @endphp {{ __('Buy Now') }} @endif @else {{ __('Install Now') }} @endif

{{ __('Details') }}

@foreach ($price_details as $detail)

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

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

@endforeach
@endsection @push('script') @endpush