diff --git a/resources/beike/admin/views/pages/plugins/form.blade.php b/resources/beike/admin/views/pages/plugins/form.blade.php index 805f9a1d..d6dcf461 100644 --- a/resources/beike/admin/views/pages/plugins/form.blade.php +++ b/resources/beike/admin/views/pages/plugins/form.blade.php @@ -73,19 +73,39 @@ @endif @if ($column['type'] == 'rich-text') - - @if (isset($column['description'])) - {{ $column['description'] }} - @endif - - @endif + + @if (isset($column['description'])) + {{ $column['description'] }} + @endif + + @endif + @if ($column['type'] == 'checkbox') + + + @foreach ($column['options'] as $item) + + + + {{ $item['label'] }} + + + @endforeach + + + @endif @endforeach @@ -98,3 +118,20 @@ @endsection + +@push('footer') + +@endpush \ No newline at end of file