blessing-skin-server/resources/views/admin/plugins.tpl
2017-04-22 18:36:22 +08:00

50 lines
1.5 KiB
PHP

@extends('admin.master')
@section('title', trans('general.plugin-manage'))
@section('style')
<style> .btn { margin-right: 4px; } </style>
@endsection
@section('content')
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
{{ trans('general.plugin-manage') }}
</h1>
</section>
<!-- Main content -->
<section class="content">
@if (session()->has('message'))
<div class="callout callout-success" role="alert">
{{ session('message') }}
</div>
@endif
<div class="box">
<div class="box-body table-bordered">
<table id="plugin-table" class="table table-hover">
<thead>
<tr>
<th>{{ trans('admin.plugins.name') }}</th>
<th>{{ trans('admin.plugins.description') }}</th>
<th>{{ trans('admin.plugins.author') }}</th>
<th>{{ trans('admin.plugins.version') }}</th>
<th>{{ trans('admin.plugins.status.title') }}</th>
<th>{{ trans('admin.plugins.operations.title') }}</th>
</tr>
</thead>
</table>
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
@endsection