@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Marketplace'))
@section('titlebar_actions')
{{ __('Manage Addons') }}
{{ __('Browse Add-ons') }}
{{ __('Cart') }}
{{ count(is_array($cart) ? $cart : []) }}
@endsection
@section('content')
@include('panel.admin.market.components.marketplace-filter')
@if(request('payment_status'))
{{ __(request('payment_status') == 'paid' ? 'Your payment has been received successfully.' : 'Your payment was not received, please try again.') }}
@endif
@foreach ($items as $item)
@if (trim($item['badge'], ' ') != '' || $item['price'] == 0)
@if (trim($item['badge'], ' ') != '')
{{ $item['badge'] }}
@elseif ($item['price'] == 0)
@lang('Free')
@endif
@endif
@if ($item['version'] != $item['db_version'] && $item['installed'])
Update Available
@endif
@if ($item['installed'])
{{ __('Installed') }}
@endif
{{ $item['name'] }}
{{ number_format($item['review'], 1) }}
{{ $item['description'] }}
{{ __('View details') }}
@foreach ($item['categories'] as $tag)
{{ $tag }}
@if (!$loop->last)
@endif
@endforeach
@if($item['licensed'] != true && $item['price'])
@endif
@endforeach
@endsection
@push('script')
@includeWhen(\App\Helpers\Classes\Helper::showIntercomForBuyer($items),'default.panel.layout.includes.buyer-intercom')
@endpush