@extends($layout) @section('content')

My Apps

@displayNotification()
@include('plugins::partials.plugintabs', ["currentUrl" => "installed"])
{{ __("text.installed_plugins") }}
@each('plugins::partials.plugin', $tpl->get("installedPlugins"), 'plugin') @if ($tpl->get("installedPlugins") === false || count($tpl->get("installedPlugins")) == 0) {{ __("text.no_plugins_activated") }} @endif
{{ __("text.new_plugins") }}
    @if (count($tpl->get("newPlugins")) > 0) @foreach ($tpl->get("newPlugins") as $newplugin)
  • {{ $newplugin->name }}
    {{ $newplugin->description }}
    {{ $tpl->__("text.version") }} {{ $newplugin->version }} @if (is_array($newplugin->authors) && count($newplugin->authors) > 0) | {{ $tpl->__("text.by") }} {{ $newplugin->authors[0]["name"] }} @endif | {{ $tpl->__("text.visit_site") }}
  • @endforeach @else We couldn't discover any new plugins in your plugin folder, please make sure the plugin is unzipped and contains a composer.json file. @endif
@endsection