0f95d98c37
Extension logo's get imported correctly now, as well as extension buttons in the /admin/extensions page. Routes and view controllers get added automatically as well.
20 lines
No EOL
719 B
PHP
20 lines
No EOL
719 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('title')
|
|
Extensions
|
|
@endsection
|
|
|
|
@section('content-header')
|
|
<h1>Extensions<small>Manage all your installed extensions.</small></h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
<li class="active">Extensions</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="col-xs-6 col-sm-3 text-center">
|
|
<a href="{{ route('admin.extensions.blueprint.index') }}"><button class="btn btn-gray" style="width:100%;margin-bottom:17px;"><img src="/assets/extensions/blueprint/logo.jpg" alt="logo" class="img-btn"> Blueprint <small>{{ $bp->version() }}</small></button></a>
|
|
</div>
|
|
<!--␀replace␀-->
|
|
@endsection |