@extends('admin::layouts.master') @section('title', '插件编辑') @section('content')
{{ $plugin->name }} - 配置
@if (session('success')) @endif
@csrf {{ method_field('put') }} @foreach ($plugin->getColumns() as $column) @if ($column['type'] == 'string') @endif @if ($column['type'] == 'select') @if (isset($column['description']))
{{ $column['description'] }}
@endif
@endif @if ($column['type'] == 'bool') @if (isset($column['description']))
{{ $column['description'] }}
@endif
@endif @if ($column['type'] == 'textarea') @if (isset($column['description']))
{{ $column['description'] }}
@endif
@endif @endforeach
@endsection