@extends('layouts.admin') @section('title') Extensions @endsection @php $is_installed=(($PlaceholderService->installed() != "NOTINSTALLED") && ($PlaceholderService->version() != "::"."v")); @endphp @section('content-header') @if($is_installed) @if(($PlaceholderService->version() != $latestBlueprintVersion) && ($PlaceholderService->version() != "rolling") && $latestBlueprintVersion != "unknown")
Blueprint is out-of-date. You're running Blueprint {{ $PlaceholderService->version() }} which is outdated. Update to version {{ $latestBlueprintVersion }} to access the latest features and improvements.
@endif @if($PlaceholderService->version() == "rolling")
This instance is running a development-preview of Blueprint. You may run into bugs, extension incompatibilities and more. If you run into any issues, please let us know.
@endif @if($latestBlueprintVersion == "unknown" && $PlaceholderService->version() != "rolling")
Could not fetch version info. Blueprint failed to fetch the latest release name from the API.
@endif

Blueprint

Pterodactyl's favorite modding community. Develop, collaborate and install extensions with the extension platform that puts you first. Pterodactyl themes, plugin installers, player managers, admin tools and much more. There's a Blueprint extension for that.
@endif @endsection @section('content') @if($is_installed)
@foreach($blueprint->extensionsConfigs() as $extension) @include("blueprint.admin.entry", [ 'EXTENSION_ID' => $extension['identifier'], 'EXTENSION_NAME' => $extension['name'], 'EXTENSION_VERSION' => $extension['version'], 'EXTENSION_METADATA' => $metadataScoped, 'EXTENSION_ICON' => !empty($extension['icon']) ? '/assets/extensions/'.$extension['identifier'].'/icon.'.pathinfo($extension['icon'], PATHINFO_EXTENSION) : '/assets/extensions/'.$extension['identifier'].'/icon.jpg' ]) @endforeach
@else

Unfinished installation
Blueprint is currently only partially installed.
Finish the installation guide, then return to this page afterwards.

You may be able to fix this issue by running blueprint -upgrade.
@endif @endsection @section('footer-scripts') @parent @endsection