@if (session()->has('alert')) @slot('type', session('alert')['type']) @slot('msg', session('alert')['msg']) @endif @if (!empty($pendingReplace))
{{ __('Plugin Already Installed - Same Version Detected') }}

{{ __('The uploaded plugin ":name" (v:version) is already installed with the same version. Would you like to replace it?', ['name' => $pendingReplace['incoming']['name'], 'version' => $pendingReplace['incoming']['version']]) }}

{{ __('Installed Version') }}
{{ __('Name') }} {{ $pendingReplace['existing']['name'] ?? '-' }}
{{ __('Version') }} {{ $pendingReplace['existing']['version'] ?? '-' }}
{{ __('Author') }} {{ $pendingReplace['existing']['author'] ?? '-' }}
{{ __('Description') }} {{ $pendingReplace['existing']['description'] ?? '-' }}
{{ __('Incoming Version') }}
{{ __('Name') }} {{ $pendingReplace['incoming']['name'] ?? '-' }}
{{ __('Version') }} {{ $pendingReplace['incoming']['version'] ?? '-' }}
{{ __('Author') }} {{ $pendingReplace['incoming']['author'] ?? '-' }}
{{ __('Description') }} {{ $pendingReplace['incoming']['description'] ?? '-' }}
@csrf
@csrf
@endif
{{ __('Upload Plugin') }}
{{ __('Marketplace') }}
@csrf
{{ __('Ensure the zip file contains a valid info.json in its root directory.') }}
{{ __('Installed Plugins') }}
{{ count($plugins) }} {{ __('plugins') }}
@if (empty($plugins))
{{ __('No plugins installed') }}

{{ __('Upload a .zip plugin file above to get started.') }}

@else
@foreach ($plugins as $plugin)
@if (!empty($plugin['screenshot'])) @else
@endif
@if (!empty($plugin['official']) && $plugin['official'] == '1') @endif @if (!empty($plugin['pro']) && $plugin['pro'] == '1') @if (!empty($plugin['pro_url'])) @else @endif @endif @if ($plugin['is_enabled']) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif
@if (!empty($pluginUpdates[$plugin['slug']])) v{{ $pluginUpdates[$plugin['slug']]['new_version'] }} @endif
@if (!empty($plugin['donation'])) {{ __('Donate') }} @endif
{{ $plugin['name'] ?? $plugin['slug'] }}
@if (!empty($plugin['has_readme'])) @endif @if (!empty($plugin['has_changelog'])) @endif
@if (!empty($plugin['website'])) {{ $plugin['author'] ?? __('Unknown Author') }} @else {{ $plugin['author'] ?? __('Unknown Author') }} @endif

{{ $plugin['description'] ?? __('No description available.') }}

v{{ $plugin['version'] ?? '?' }} {{ $plugin['compatibility'] ?? '-' }} @if (!empty($plugin['license'])) @if (!empty($plugin['license_url'])) @else @endif @endif @if (!empty($plugin['missing_dependencies'])) {{ __('Missing Dependencies') }} @endif
@endforeach
{{ __('No plugins found') }}

{{ __('Try a different search term.') }}

@endif