@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')
@foreach ($items as $item)
{{ $item['name'] }}

{{ $item['name'] }}

$item['installed'], 'bg-foreground/10' => !$item['installed'], ])> {{ $item['installed'] ? __('Installed') . ($item['version'] != $item['db_version'] ? ' - ' . trans('Update Available') : '') : __('Not Installed') }}

{{ $item['description'] }}

@if ($item['version'] != $item['db_version']) @if($item['support']['support']) !$item['installed'], ]) variant="outline" hover-variant="warning" size="none" title="{{ __('Upgrade') }}" > @else

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('Extend Support & Updates')
@endif @endif $item['installed'] == 0, ]) variant="outline" hover-variant="danger" size="none" > $item['installed'] == 1, ]) variant="outline" hover-variant="success" size="none" >
{{ __('View details') }}
@endforeach
@endsection @push('script') @endpush