@extends('panel.layout.app', ['disable_tblr' => true])
@section('title', __('Marketplace'))
@section('titlebar_actions')
{{ __('Manage Addons') }}
{{ __('Browse Add-ons') }}
@endsection
@section('content')
@include('panel.admin.market.components.marketplace-filter')
@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'] }}
@foreach ($item['categories'] as $tag)
{{ $tag }}
@if (!$loop->last)
@endif
@endforeach
{{ __('View details') }}
@endforeach
@endsection
@push('script')
@endpush