2023-01-30 08:52:22 -05:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title')
|
2023-02-19 13:30:47 -05:00
|
|
|
Blueprint
|
2023-01-30 08:52:22 -05:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
2023-02-06 15:14:26 -05:00
|
|
|
<img src="/assets/extensions/blueprint/logo.jpg" alt="logo" style="float:left;width:30px;height:30px;border-radius:3px;margin-right:5px;">
|
2023-02-07 11:16:49 -05:00
|
|
|
<h1 ext-title>Blueprint<tag mg-left blue>indev</tag></h1>
|
2023-01-30 08:52:22 -05:00
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
|
|
<li><a href="{{ route('admin.extensions') }}">Extensions</a></li>
|
|
|
|
<li class="active">Blueprint</li>
|
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2023-02-19 13:30:47 -05:00
|
|
|
<p>Blueprint is the framework that drives all Blueprint-compatible extensions and allows multiple extensions to be installed at the same time.</p>
|
2023-02-08 04:47:00 -05:00
|
|
|
<div class="row">
|
2023-02-19 13:30:47 -05:00
|
|
|
<div class="col-xs-3">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title"><i class='bx bxs-pen' style='margin-right:5px;'></i>License</h3>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
@if ($bp->licenseIsValid())
|
|
|
|
Your attached license key is valid. You can manage your license key below.
|
|
|
|
@else
|
|
|
|
You have not attached a (valid) license key. Blueprint is limited until you attach a valid license key.
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
|
|
@if ($bp->licenseIsValid())
|
|
|
|
<a href="{{ $root }}/license"><button class="btn btn-gray-alt btn-sm pull-right">Manage</button></a>
|
|
|
|
@else
|
|
|
|
<a href="{{ $root }}/license"><button class="btn btn-gray-alt btn-sm pull-right">Resolve</button></a>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-08 04:47:00 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-30 08:52:22 -05:00
|
|
|
@endsection
|