@php $price_details = [ [ 'label' => 'License', 'value' => 'Lifetime', ], [ 'label' => 'Support & Updates', 'value' => '6 months', ], [ 'label' => 'Installation', 'value' => 'One Click', ], [ 'label' => 'Recently Updated', 'value' => 'Yes', ], ]; @endphp @extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('Marketplace')) @section('titlebar_pretitle') {{ __('Back to Marketplace') }} @endsection @section('titlebar_actions')
{{ __('Manage Addons') }} {{ __('Browse Add-ons') }} {{ __('Cart') }} {{ count(is_array($cart) ? $cart : []) }}
@endsection @section('content')
@if ($item['youtube'])
@endif

{{ $item['name'] }}

@if ($item['installed'] and $item['version'] == $item['db_version'])

{{ __('Installed') }}

@else {{ __('Upgrade') }} @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 add-on') }}

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

{{ $tag }}

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

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

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

{{ $qaItem['answer'] }}

@endforeach
@endif
@if (!$item['only_show'])

{{ __('Limited Offer') }}

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

@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') }}

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

@else

@if (!$item['only_show']) {{ __('Free') }} @else {{ __('Contact Us') }} @endif

@endif @if (!$item['only_show'])
@if ($item['price'] != 0) @if ($app_is_demo) {{ __('Buy Now') }} @else @php $is_license = $item['licensed'] == 1; @endphp @if ($is_license) {{ __('Install Now') }} @else @include('default.panel.admin.marketplace.particles.is-buy') @endif @endif @else @if ($item['installed']) @if ($item['version'] == $item['db_version']) {{ __('Installed') }} @else {{ __('Upgrade') }} @endif @else {{ __('Install Now') }} @endif @endif @include('default.panel.admin.marketplace.particles.is-cart')
@else {{ __('Live Preview') }} @endif
@if (!\App\Helpers\Classes\Helper::isUserVIP() && !$marketSubscription['data'] && $item['price'] != 0 && \App\Helpers\Classes\Helper::appIsNotDemo())
{{ trans('or') }}
{{ trans('Limited Time Offer') }}

{{ trans('Included with ') }} {{ trans('Premium Membership.') }}

{{ trans('Premium membership unlocks full access to all MagicAI features and exclusive benefits. Stand out from the crowd at an affordable monthly rate.') }}

{{ trans('Join Premium Membership') }}

{{ trans('Access to over $5,000 worth of items.') }}

@php $premium_features = [ 'VIP Support' => 'Get instant help whenever you need it.', 'Access to All Current & Future Extensions ' => 'Always stay ahead with the latest features.', 'Access to All Current & Future Themes ' => 'Always stay ahead with the latest designs.', 'Get the Mobile App Free in Your 4th Month! ' => 'Enjoy a free mobile app after your fourth month of subscription.', '10 Hours of Custom Development Every Month' => 'Tailored improvements, at no extra cost.', 'Direct Communication with Our Development Team' => 'No middlemen, just solutions.', 'Exclusive Extensions Not Available to Others' => 'Stay ahead of competition, reserved for VIPs only.', 'Complimentary Logo Design' => 'A custom logo to elevate your brand.', 'Personalized Onboarding Assistance' => 'We’ll help you get up and running smoothly.', 'Free Setup & Configuration Services' => 'Let us handle the technical details for you.', ]; @endphp
    @foreach ($premium_features as $feature => $tooltip)
  • {!! trans($feature) !!}
  • @endforeach
    • @foreach ($paidExtensions as $item)
    • {!! trans($item['name']) !!}
    • @endforeach
@endif @if (!$item['only_show'])

{{ __('Details') }}

@foreach ($price_details as $detail)

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

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

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