2016-10-17 12:20:55 +08:00
|
|
|
@extends('admin.master')
|
|
|
|
|
|
|
|
@section('title', trans('general.plugin-manage'))
|
|
|
|
|
|
|
|
@section('style')
|
2017-01-02 12:19:34 +08:00
|
|
|
<style> .btn { margin-right: 4px; } </style>
|
2016-10-17 12:20:55 +08:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<!-- Content Wrapper. Contains page content -->
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<!-- Content Header (Page header) -->
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>
|
2018-07-17 11:06:55 +08:00
|
|
|
@lang('general.plugin-manage')
|
2016-10-17 12:20:55 +08:00
|
|
|
</h1>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<section class="content">
|
2016-12-31 11:38:07 +08:00
|
|
|
|
|
|
|
@if (session()->has('message'))
|
|
|
|
<div class="callout callout-success" role="alert">
|
|
|
|
{{ session('message') }}
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-10-17 12:20:55 +08:00
|
|
|
<div class="box">
|
2017-01-02 12:19:34 +08:00
|
|
|
<div class="box-body table-bordered">
|
|
|
|
<table id="plugin-table" class="table table-hover">
|
2016-10-17 12:20:55 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-07-17 11:06:55 +08:00
|
|
|
<th>@lang('admin.plugins.name')</th>
|
|
|
|
<th>@lang('admin.plugins.description')</th>
|
|
|
|
<th>@lang('admin.plugins.author')</th>
|
|
|
|
<th>@lang('admin.plugins.version')</th>
|
|
|
|
<th>@lang('admin.plugins.dependencies')</th>
|
|
|
|
<th>@lang('admin.plugins.status.title')</th>
|
|
|
|
<th>@lang('admin.plugins.operations.title')</th>
|
2016-10-17 12:20:55 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section><!-- /.content -->
|
|
|
|
</div><!-- /.content-wrapper -->
|
|
|
|
|
|
|
|
@endsection
|