@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 @push('before-head-close') @endpush @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--}}

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

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

{{ $tag }}

@endforeach

{{ __('Addons Included In This Bundle ✅') }}

{{ trans('Bundle Deal: Save') . ' ' . $item['bundle_discount_percent'] . '%' }}
@php $totalProductPrice = 0; @endphp @foreach ($item['bundleExtensions'] as $bundleItem)
{{ $bundleItem['name'] }}

{{ $bundleItem['name'] }}

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

{{ $bundleItem['description'] }}

@lang('Learn more')
@php $totalProductPrice += $bundleItem['price']; @endphp @endforeach
{{ __('Price of Individual Addons') }} ${{ $totalProductPrice }}
{{ __('Bundle Save') }} ${{ $totalProductPrice -$item['price'] }}
{{ __('Total') }}
{{-- @if ($item['fake_price'] ?? false)--}} {{-- --}} {{-- ${{ $item['fake_price'] }}--}} {{-- --}} {{-- @endif--}} ${{ $item['price'] }}
{{ __('Purchase Bundle') }}
{{ trans('Bundle Deal: Save') . ' ' . $item['bundle_discount_percent'] . '%' }} @if ($item['price'] != 0 && !$item['only_show'])

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

{{ __('Limited Time Offer') }}

{{ __('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) {{ __('Purchase Bundle') }} @else @php $is_license = $item['licensed'] == 1; @endphp @if ($is_license) @if ($item['support']['support'] === false && $item['installed'])
{{ __('Renew License') }} @lang('Update & Support period has expired.')

Your extension license remains active, but access to new updates
and support ended after the initial 6-month period. Extend your
license period to get the latest features, updates, and dedicated
support.

Alternatively, you can continue using your current extension
version, but without access to new features or support.

@lang('Renew License')
@else {{ __('Install Now') }} @endif @else @include('default.panel.admin.marketplace.particles.bundle-is-buy') @endif @endif @else @if ($item['installed']) @if ($item['version'] == $item['db_version']) {{ __('Installed') }} @else {{ __('Upgrade') }} @endif @else {{ __('Install Now') }} @endif @endif
@else {{ __('Live Preview') }} @endif
@if (!$item['only_show'])

{{ __('Details') }}

@foreach ($price_details as $detail)

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

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

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